├── LICENSE ├── README.md ├── changelog ├── kinect2 ├── CMakeLists.txt └── package.xml ├── kinect2_bridge ├── CMakeLists.txt ├── README.md ├── data │ ├── 196605135147 │ │ ├── calib_color.yaml │ │ ├── calib_ir.yaml │ │ └── calib_pose.yaml │ └── 299150235147 │ │ ├── calib_color.yaml │ │ ├── calib_ir.yaml │ │ └── calib_pose.yaml ├── include │ └── kinect2_bridge │ │ └── kinect2_definitions.h ├── launch │ └── kinect2_bridge.launch ├── nodelet_plugins.xml ├── package.xml └── src │ └── kinect2_bridge.cpp ├── kinect2_calibration ├── CMakeLists.txt ├── README.md ├── include │ └── kinect2_calibration │ │ └── kinect2_calibration_definitions.h ├── package.xml ├── patterns │ ├── chess5x7x0.03.pdf │ ├── chess5x7x0.03.svg │ ├── chess7x9x0.025.pdf │ ├── chess7x9x0.025.svg │ ├── chess9x11x0.02.pdf │ └── chess9x11x0.02.svg └── src │ └── kinect2_calibration.cpp ├── kinect2_depth_registration ├── CMakeLists.txt ├── README.md ├── cmake │ ├── FindOpenCL.cmake │ └── depth_registration.cmake.in ├── include │ └── kinect2_depth_registration │ │ └── depth_registration.h ├── opencl │ └── depth_registration.cl ├── package.xml └── src │ ├── depth_registration.cpp │ ├── depth_registration_cpu.cpp │ ├── depth_registration_cpu.h │ ├── depth_registration_opencl.cpp │ └── depth_registration_opencl.h └── kinect2_registration_viewer ├── CMakeLists.txt ├── README.md ├── package.xml └── src └── viewer.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/changelog -------------------------------------------------------------------------------- /kinect2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2/CMakeLists.txt -------------------------------------------------------------------------------- /kinect2/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2/package.xml -------------------------------------------------------------------------------- /kinect2_bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/CMakeLists.txt -------------------------------------------------------------------------------- /kinect2_bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/README.md -------------------------------------------------------------------------------- /kinect2_bridge/data/196605135147/calib_color.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/data/196605135147/calib_color.yaml -------------------------------------------------------------------------------- /kinect2_bridge/data/196605135147/calib_ir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/data/196605135147/calib_ir.yaml -------------------------------------------------------------------------------- /kinect2_bridge/data/196605135147/calib_pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/data/196605135147/calib_pose.yaml -------------------------------------------------------------------------------- /kinect2_bridge/data/299150235147/calib_color.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/data/299150235147/calib_color.yaml -------------------------------------------------------------------------------- /kinect2_bridge/data/299150235147/calib_ir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/data/299150235147/calib_ir.yaml -------------------------------------------------------------------------------- /kinect2_bridge/data/299150235147/calib_pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/data/299150235147/calib_pose.yaml -------------------------------------------------------------------------------- /kinect2_bridge/include/kinect2_bridge/kinect2_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/include/kinect2_bridge/kinect2_definitions.h -------------------------------------------------------------------------------- /kinect2_bridge/launch/kinect2_bridge.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/launch/kinect2_bridge.launch -------------------------------------------------------------------------------- /kinect2_bridge/nodelet_plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/nodelet_plugins.xml -------------------------------------------------------------------------------- /kinect2_bridge/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/package.xml -------------------------------------------------------------------------------- /kinect2_bridge/src/kinect2_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_bridge/src/kinect2_bridge.cpp -------------------------------------------------------------------------------- /kinect2_calibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/CMakeLists.txt -------------------------------------------------------------------------------- /kinect2_calibration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/README.md -------------------------------------------------------------------------------- /kinect2_calibration/include/kinect2_calibration/kinect2_calibration_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/include/kinect2_calibration/kinect2_calibration_definitions.h -------------------------------------------------------------------------------- /kinect2_calibration/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/package.xml -------------------------------------------------------------------------------- /kinect2_calibration/patterns/chess5x7x0.03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/patterns/chess5x7x0.03.pdf -------------------------------------------------------------------------------- /kinect2_calibration/patterns/chess5x7x0.03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/patterns/chess5x7x0.03.svg -------------------------------------------------------------------------------- /kinect2_calibration/patterns/chess7x9x0.025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/patterns/chess7x9x0.025.pdf -------------------------------------------------------------------------------- /kinect2_calibration/patterns/chess7x9x0.025.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/patterns/chess7x9x0.025.svg -------------------------------------------------------------------------------- /kinect2_calibration/patterns/chess9x11x0.02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/patterns/chess9x11x0.02.pdf -------------------------------------------------------------------------------- /kinect2_calibration/patterns/chess9x11x0.02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/patterns/chess9x11x0.02.svg -------------------------------------------------------------------------------- /kinect2_calibration/src/kinect2_calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_calibration/src/kinect2_calibration.cpp -------------------------------------------------------------------------------- /kinect2_depth_registration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/CMakeLists.txt -------------------------------------------------------------------------------- /kinect2_depth_registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/README.md -------------------------------------------------------------------------------- /kinect2_depth_registration/cmake/FindOpenCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/cmake/FindOpenCL.cmake -------------------------------------------------------------------------------- /kinect2_depth_registration/cmake/depth_registration.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/cmake/depth_registration.cmake.in -------------------------------------------------------------------------------- /kinect2_depth_registration/include/kinect2_depth_registration/depth_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/include/kinect2_depth_registration/depth_registration.h -------------------------------------------------------------------------------- /kinect2_depth_registration/opencl/depth_registration.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/opencl/depth_registration.cl -------------------------------------------------------------------------------- /kinect2_depth_registration/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/package.xml -------------------------------------------------------------------------------- /kinect2_depth_registration/src/depth_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/src/depth_registration.cpp -------------------------------------------------------------------------------- /kinect2_depth_registration/src/depth_registration_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/src/depth_registration_cpu.cpp -------------------------------------------------------------------------------- /kinect2_depth_registration/src/depth_registration_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/src/depth_registration_cpu.h -------------------------------------------------------------------------------- /kinect2_depth_registration/src/depth_registration_opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/src/depth_registration_opencl.cpp -------------------------------------------------------------------------------- /kinect2_depth_registration/src/depth_registration_opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_depth_registration/src/depth_registration_opencl.h -------------------------------------------------------------------------------- /kinect2_registration_viewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_registration_viewer/CMakeLists.txt -------------------------------------------------------------------------------- /kinect2_registration_viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_registration_viewer/README.md -------------------------------------------------------------------------------- /kinect2_registration_viewer/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_registration_viewer/package.xml -------------------------------------------------------------------------------- /kinect2_registration_viewer/src/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/kinect2-ros/HEAD/kinect2_registration_viewer/src/viewer.cpp --------------------------------------------------------------------------------