├── .gitignore ├── .gitmodules ├── 00_doc ├── class_diagram.drawio ├── class_diagram.png ├── demo_adas.jpg └── rqt_graph_0.png ├── LICENSE ├── NOTICE.md ├── README.md ├── download_resource.sh ├── inference_helper_sample_ros ├── CMakeLists.txt ├── include │ └── inference_helper_sample_ros │ │ ├── cls_mobilenet_v2.hpp │ │ ├── depth_lapdepth.hpp │ │ ├── det_yolox.hpp │ │ ├── seg_paddleseg_cityscapessota.hpp │ │ ├── transport.hpp │ │ └── visibility_control.h ├── inference_helper_def.cmake ├── launch │ ├── adas.launch.py │ ├── all.launch.py │ ├── cls_mobilenet_v2.launch.py │ ├── depth_lapdepth.launch.py │ ├── det_yolox.launch.py │ ├── seg_paddleseg_cityscapessota.launch.py │ ├── transport.launch.py │ └── wrapper_generate_launch_description.launch.py ├── package.xml ├── rviz │ ├── adas_rviz copy.rviz │ └── adas_rviz.rviz └── src │ ├── cls_mobilenet_v2.cpp │ ├── common_helper │ ├── CMakeLists.txt │ ├── bounding_box.cpp │ ├── bounding_box.h │ ├── camera_model.h │ ├── cmakes │ │ └── build_setting.cmake │ ├── common_helper.cpp │ ├── common_helper.h │ ├── common_helper_cv.cpp │ ├── common_helper_cv.h │ ├── hungarian_algorithm.h │ ├── kalman_filter.h │ ├── simple_matrix.h │ ├── tracker.cpp │ └── tracker.h │ ├── depth_lapdepth.cpp │ ├── det_yolox.cpp │ ├── engine │ ├── engine_cls_mobilenet_v2.cpp │ ├── engine_cls_mobilenet_v2.hpp │ ├── engine_depth_lapdepth.cpp │ ├── engine_depth_lapdepth.hpp │ ├── engine_det_yolox.cpp │ ├── engine_det_yolox.hpp │ ├── engine_seg_paddleseg_cityscapessota.cpp │ └── engine_seg_paddleseg_cityscapessota.hpp │ ├── seg_paddleseg_cityscapessota.cpp │ └── transport.cpp └── inference_helper_sample_ros_interface ├── CMakeLists.txt ├── msg ├── BoundingBox.msg ├── BoundingBoxList.msg └── Classification.msg └── package.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ 3 | third_party/ 4 | resource/ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/.gitmodules -------------------------------------------------------------------------------- /00_doc/class_diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/00_doc/class_diagram.drawio -------------------------------------------------------------------------------- /00_doc/class_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/00_doc/class_diagram.png -------------------------------------------------------------------------------- /00_doc/demo_adas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/00_doc/demo_adas.jpg -------------------------------------------------------------------------------- /00_doc/rqt_graph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/00_doc/rqt_graph_0.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/README.md -------------------------------------------------------------------------------- /download_resource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/download_resource.sh -------------------------------------------------------------------------------- /inference_helper_sample_ros/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/CMakeLists.txt -------------------------------------------------------------------------------- /inference_helper_sample_ros/include/inference_helper_sample_ros/cls_mobilenet_v2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/include/inference_helper_sample_ros/cls_mobilenet_v2.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/include/inference_helper_sample_ros/depth_lapdepth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/include/inference_helper_sample_ros/depth_lapdepth.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/include/inference_helper_sample_ros/det_yolox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/include/inference_helper_sample_ros/det_yolox.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/include/inference_helper_sample_ros/seg_paddleseg_cityscapessota.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/include/inference_helper_sample_ros/seg_paddleseg_cityscapessota.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/include/inference_helper_sample_ros/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/include/inference_helper_sample_ros/transport.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/include/inference_helper_sample_ros/visibility_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/include/inference_helper_sample_ros/visibility_control.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/inference_helper_def.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/inference_helper_def.cmake -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/adas.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/adas.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/all.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/all.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/cls_mobilenet_v2.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/cls_mobilenet_v2.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/depth_lapdepth.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/depth_lapdepth.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/det_yolox.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/det_yolox.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/seg_paddleseg_cityscapessota.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/seg_paddleseg_cityscapessota.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/transport.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/transport.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/launch/wrapper_generate_launch_description.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/launch/wrapper_generate_launch_description.launch.py -------------------------------------------------------------------------------- /inference_helper_sample_ros/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/package.xml -------------------------------------------------------------------------------- /inference_helper_sample_ros/rviz/adas_rviz copy.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/rviz/adas_rviz copy.rviz -------------------------------------------------------------------------------- /inference_helper_sample_ros/rviz/adas_rviz.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/rviz/adas_rviz.rviz -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/cls_mobilenet_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/cls_mobilenet_v2.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/CMakeLists.txt -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/bounding_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/bounding_box.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/bounding_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/bounding_box.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/camera_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/camera_model.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/cmakes/build_setting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/cmakes/build_setting.cmake -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/common_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/common_helper.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/common_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/common_helper.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/common_helper_cv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/common_helper_cv.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/common_helper_cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/common_helper_cv.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/hungarian_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/hungarian_algorithm.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/kalman_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/kalman_filter.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/simple_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/simple_matrix.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/tracker.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/common_helper/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/common_helper/tracker.h -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/depth_lapdepth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/depth_lapdepth.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/det_yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/det_yolox.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_cls_mobilenet_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_cls_mobilenet_v2.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_cls_mobilenet_v2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_cls_mobilenet_v2.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_depth_lapdepth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_depth_lapdepth.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_depth_lapdepth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_depth_lapdepth.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_det_yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_det_yolox.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_det_yolox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_det_yolox.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_seg_paddleseg_cityscapessota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_seg_paddleseg_cityscapessota.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/engine/engine_seg_paddleseg_cityscapessota.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/engine/engine_seg_paddleseg_cityscapessota.hpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/seg_paddleseg_cityscapessota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/seg_paddleseg_cityscapessota.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros/src/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros/src/transport.cpp -------------------------------------------------------------------------------- /inference_helper_sample_ros_interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros_interface/CMakeLists.txt -------------------------------------------------------------------------------- /inference_helper_sample_ros_interface/msg/BoundingBox.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros_interface/msg/BoundingBox.msg -------------------------------------------------------------------------------- /inference_helper_sample_ros_interface/msg/BoundingBoxList.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros_interface/msg/BoundingBoxList.msg -------------------------------------------------------------------------------- /inference_helper_sample_ros_interface/msg/Classification.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros_interface/msg/Classification.msg -------------------------------------------------------------------------------- /inference_helper_sample_ros_interface/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/InferenceHelper_Sample_ROS/HEAD/inference_helper_sample_ros_interface/package.xml --------------------------------------------------------------------------------