All Projects → art-programmer → LayeredSceneDecomposition

art-programmer / LayeredSceneDecomposition

Licence: other
No description or website provided.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to LayeredSceneDecomposition

AOS4ReID
Adversarially Occluded Samples for Person Re-identification, CVPR 2018
Stars: ✭ 32 (+45.45%)
Mutual labels:  occlusion
sdn-nfv-papers
This is a paper list about Resource Allocation in Network Functions Virtualization (NFV) and Software-Defined Networking (SDN).
Stars: ✭ 40 (+81.82%)
Mutual labels:  paper
LMMS
Language Modelling Makes Sense - WSD (and more) with Contextual Embeddings
Stars: ✭ 79 (+259.09%)
Mutual labels:  paper
PhD
Incremental Methods of Deep Learning for Detection and Classifcation in a Robotics Environment
Stars: ✭ 13 (-40.91%)
Mutual labels:  paper
pFedMe
Personalized Federated Learning with Moreau Envelopes (pFedMe) using Pytorch (NeurIPS 2020)
Stars: ✭ 196 (+790.91%)
Mutual labels:  paper
ghiaseddin
Author's implementation of the paper "Deep Relative Attributes" (ACCV 2016)
Stars: ✭ 41 (+86.36%)
Mutual labels:  paper
bug-localization
Source code of the paper "Leveraging textual properties of bug reports to localize relevant source files".
Stars: ✭ 15 (-31.82%)
Mutual labels:  paper
AdversarialAudioSeparation
Code accompanying the paper "Semi-supervised adversarial audio source separation applied to singing voice extraction"
Stars: ✭ 70 (+218.18%)
Mutual labels:  paper
Text-Summarization-Repo
텍스트 요약 분야의 주요 연구 주제, Must-read Papers, 이용 가능한 model 및 data 등을 추천 자료와 함께 정리한 저장소입니다.
Stars: ✭ 213 (+868.18%)
Mutual labels:  paper
yuanxiaosc.github.io
个人博客;论文;机器学习;深度学习;Python学习;C++学习;
Stars: ✭ 19 (-13.64%)
Mutual labels:  paper
pluGET
📦 Powerful Package manager which updates plugins & server software for minecraft servers
Stars: ✭ 87 (+295.45%)
Mutual labels:  paper
SportPaper
Performance-tuned Minecraft 1.8 spigot server
Stars: ✭ 122 (+454.55%)
Mutual labels:  paper
MiniVox
Code for our ACML and INTERSPEECH papers: "Speaker Diarization as a Fully Online Bandit Learning Problem in MiniVox".
Stars: ✭ 15 (-31.82%)
Mutual labels:  paper
Orion
Mixin loader for Paper
Stars: ✭ 46 (+109.09%)
Mutual labels:  paper
audioContextEncoder
A context encoder for audio inpainting
Stars: ✭ 18 (-18.18%)
Mutual labels:  paper
neural-gpu
Code for the Neural GPU model originally described in "Neural GPUs Learn Algorithms"
Stars: ✭ 100 (+354.55%)
Mutual labels:  paper
Awesome-Lane-Detection
A paper list with code of lane detection.
Stars: ✭ 34 (+54.55%)
Mutual labels:  paper
msla2014
wherein I implement several substructural logics in Agda
Stars: ✭ 24 (+9.09%)
Mutual labels:  paper
Cross-View-Gait-Based-Human-Identification-with-Deep-CNNs
Code for 2016 TPAMI(IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE) A Comprehensive Study on Cross-View Gait Based Human Identification with Deep CNNs
Stars: ✭ 21 (-4.55%)
Mutual labels:  paper
TiDB-A-Raft-based-HTAP-Database
Unofficial! English original and Chinese translation of the paper.
Stars: ✭ 42 (+90.91%)
Mutual labels:  paper

Layered Scene Decomposition via the Occlusion-CRF

By Chen Liu, Yasutaka Furukawa, and Pushmeet Kohli

Introduction

This paper proposes a novel layered depth map representation and its inference algorithm which is able to infer invisible surfaces behind occlusions. To learn more, please see our CVPR 2016 paper or visit our project website

This code implements the algorithm described in our paper in C++.

Requirements

  1. OpenCV
  2. PCL
  3. gflags

Usages

To compile the program:

  1. mkdir build
  2. cd build
  3. cmake ..
  4. make

To run the program on your own data:

./LayeredSceneDecomposition --image_path="your image path" --point_cloud_path="your point cloud path" --result_folder="where you want to save results" --cache_folder="where you want to save cache"

To run the program on the demo data:

./LayeredSceneDecomposition --image_path=../Input/image_01.txt --point_cloud_path=../Input/point_cloud_01.txt --result_folder=../Result --cache_folder=../Cache

Point cloud file format:

The point cloud file stores a 3D point cloud, each of which corresponds to one image pixel. The number in the first row equals to image_width * image_height. Then, each row stores 3D coordinates for a point which corresponds to a pixel (indexed by y * image_width + x).

Contact

If you have any questions, please contact me at [email protected].

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].