├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── docs └── depth_cleaning_top_bottom.jpg └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/ThreadedDepthCleaner/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/ThreadedDepthCleaner/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/ThreadedDepthCleaner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/ThreadedDepthCleaner/HEAD/README.md -------------------------------------------------------------------------------- /docs/depth_cleaning_top_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/ThreadedDepthCleaner/HEAD/docs/depth_cleaning_top_bottom.jpg -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/ThreadedDepthCleaner/HEAD/src/main.cpp --------------------------------------------------------------------------------