├── CMakeLists.txt ├── README.md ├── launch ├── camera.launch ├── fusion.launch └── lidar.launch ├── package.xml ├── preview ├── preview1.png ├── preview2.png └── rosgraph_d435_fusion.png ├── rviz ├── jsk_viz.rviz └── urdf3.rviz └── src ├── .idea ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── src.iml └── workspace.xml ├── lidar_tf2_broadcaster.py ├── multi_particle_filter_a.py ├── multipf.py ├── my_laser_config.yaml ├── obstacle_msg_analysis.py ├── obstacle_pf.py ├── obstacle_sub.py ├── overlay_sample.py ├── pf_analysis.py ├── pf_analysis_fusion.py └── pub_pf.py /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/README.md -------------------------------------------------------------------------------- /launch/camera.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/launch/camera.launch -------------------------------------------------------------------------------- /launch/fusion.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/launch/fusion.launch -------------------------------------------------------------------------------- /launch/lidar.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/launch/lidar.launch -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/package.xml -------------------------------------------------------------------------------- /preview/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/preview/preview1.png -------------------------------------------------------------------------------- /preview/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/preview/preview2.png -------------------------------------------------------------------------------- /preview/rosgraph_d435_fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/preview/rosgraph_d435_fusion.png -------------------------------------------------------------------------------- /rviz/jsk_viz.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/rviz/jsk_viz.rviz -------------------------------------------------------------------------------- /rviz/urdf3.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/rviz/urdf3.rviz -------------------------------------------------------------------------------- /src/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /src/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/.idea/misc.xml -------------------------------------------------------------------------------- /src/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/.idea/modules.xml -------------------------------------------------------------------------------- /src/.idea/src.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/.idea/src.iml -------------------------------------------------------------------------------- /src/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/.idea/workspace.xml -------------------------------------------------------------------------------- /src/lidar_tf2_broadcaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/lidar_tf2_broadcaster.py -------------------------------------------------------------------------------- /src/multi_particle_filter_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/multi_particle_filter_a.py -------------------------------------------------------------------------------- /src/multipf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/multipf.py -------------------------------------------------------------------------------- /src/my_laser_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/my_laser_config.yaml -------------------------------------------------------------------------------- /src/obstacle_msg_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/obstacle_msg_analysis.py -------------------------------------------------------------------------------- /src/obstacle_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/obstacle_pf.py -------------------------------------------------------------------------------- /src/obstacle_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/obstacle_sub.py -------------------------------------------------------------------------------- /src/overlay_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/overlay_sample.py -------------------------------------------------------------------------------- /src/pf_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/pf_analysis.py -------------------------------------------------------------------------------- /src/pf_analysis_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/pf_analysis_fusion.py -------------------------------------------------------------------------------- /src/pub_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezanatha/object-detector-fusion/HEAD/src/pub_pf.py --------------------------------------------------------------------------------