├── .circleci └── config.yml ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .gitmodules ├── CHANGELOG.rst ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cfg ├── LIBSGM.cfg └── VXSGBM.cfg ├── doc ├── mainpage.dox └── stereo_frames.svg ├── include └── gpu_stereo_image_proc │ ├── libsgm_sgbm_processor.h │ ├── sgbm_processor.h │ ├── vx_sgbm_processor.h │ └── vx_stereo_matcher.h ├── launch ├── comparison.launch ├── libsgm_stereo_image_proc.launch └── vx_stereo_image_proc.launch ├── nodelet_plugins.xml ├── package.xml ├── rosdoc.yaml ├── sider.yml └── src ├── libgpu_stereo_image_proc ├── libsgm_sgbm_processor.cpp ├── sgbm_processor.cpp ├── vx_sgbm_processor.cpp └── vx_stereo_matcher.cpp ├── nodelets ├── libsgm_disparity.cpp └── vx_disparity.cpp └── nodes └── vx_stereo_image_proc.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/README.md -------------------------------------------------------------------------------- /cfg/LIBSGM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/cfg/LIBSGM.cfg -------------------------------------------------------------------------------- /cfg/VXSGBM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/cfg/VXSGBM.cfg -------------------------------------------------------------------------------- /doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/doc/mainpage.dox -------------------------------------------------------------------------------- /doc/stereo_frames.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/doc/stereo_frames.svg -------------------------------------------------------------------------------- /include/gpu_stereo_image_proc/libsgm_sgbm_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/include/gpu_stereo_image_proc/libsgm_sgbm_processor.h -------------------------------------------------------------------------------- /include/gpu_stereo_image_proc/sgbm_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/include/gpu_stereo_image_proc/sgbm_processor.h -------------------------------------------------------------------------------- /include/gpu_stereo_image_proc/vx_sgbm_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/include/gpu_stereo_image_proc/vx_sgbm_processor.h -------------------------------------------------------------------------------- /include/gpu_stereo_image_proc/vx_stereo_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/include/gpu_stereo_image_proc/vx_stereo_matcher.h -------------------------------------------------------------------------------- /launch/comparison.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/launch/comparison.launch -------------------------------------------------------------------------------- /launch/libsgm_stereo_image_proc.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/launch/libsgm_stereo_image_proc.launch -------------------------------------------------------------------------------- /launch/vx_stereo_image_proc.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/launch/vx_stereo_image_proc.launch -------------------------------------------------------------------------------- /nodelet_plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/nodelet_plugins.xml -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/package.xml -------------------------------------------------------------------------------- /rosdoc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/rosdoc.yaml -------------------------------------------------------------------------------- /sider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/sider.yml -------------------------------------------------------------------------------- /src/libgpu_stereo_image_proc/libsgm_sgbm_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/libgpu_stereo_image_proc/libsgm_sgbm_processor.cpp -------------------------------------------------------------------------------- /src/libgpu_stereo_image_proc/sgbm_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/libgpu_stereo_image_proc/sgbm_processor.cpp -------------------------------------------------------------------------------- /src/libgpu_stereo_image_proc/vx_sgbm_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/libgpu_stereo_image_proc/vx_sgbm_processor.cpp -------------------------------------------------------------------------------- /src/libgpu_stereo_image_proc/vx_stereo_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/libgpu_stereo_image_proc/vx_stereo_matcher.cpp -------------------------------------------------------------------------------- /src/nodelets/libsgm_disparity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/nodelets/libsgm_disparity.cpp -------------------------------------------------------------------------------- /src/nodelets/vx_disparity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/nodelets/vx_disparity.cpp -------------------------------------------------------------------------------- /src/nodes/vx_stereo_image_proc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/gpu_stereo_image_proc/HEAD/src/nodes/vx_stereo_image_proc.cpp --------------------------------------------------------------------------------