├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── data ├── ParameterTuner.png ├── downloadData.txt ├── example.png └── street.png ├── display └── app1.mlapp ├── include ├── dsp_dynamic.h ├── dsp_dynamic_multiple_neighbors.h └── dsp_static.h ├── launch └── mapping.launch ├── package.xml ├── readme.md ├── rviz ├── boxes.rviz ├── future_status.rviz └── original_pointcloud.rviz ├── script └── set_map_parameters.py └── src └── map_sim_example.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/LICENSE -------------------------------------------------------------------------------- /data/ParameterTuner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/data/ParameterTuner.png -------------------------------------------------------------------------------- /data/downloadData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/data/downloadData.txt -------------------------------------------------------------------------------- /data/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/data/example.png -------------------------------------------------------------------------------- /data/street.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/data/street.png -------------------------------------------------------------------------------- /display/app1.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/display/app1.mlapp -------------------------------------------------------------------------------- /include/dsp_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/include/dsp_dynamic.h -------------------------------------------------------------------------------- /include/dsp_dynamic_multiple_neighbors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/include/dsp_dynamic_multiple_neighbors.h -------------------------------------------------------------------------------- /include/dsp_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/include/dsp_static.h -------------------------------------------------------------------------------- /launch/mapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/launch/mapping.launch -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/package.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/readme.md -------------------------------------------------------------------------------- /rviz/boxes.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/rviz/boxes.rviz -------------------------------------------------------------------------------- /rviz/future_status.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/rviz/future_status.rviz -------------------------------------------------------------------------------- /rviz/original_pointcloud.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/rviz/original_pointcloud.rviz -------------------------------------------------------------------------------- /script/set_map_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/script/set_map_parameters.py -------------------------------------------------------------------------------- /src/map_sim_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-ch/DSP-map/HEAD/src/map_sim_example.cpp --------------------------------------------------------------------------------