├── CMakeLists.txt ├── README.md ├── mscThesis_Final_Submit.pdf ├── objtracking.pdf ├── package.xml ├── result1.png ├── result2.png ├── setting.png └── src ├── box_fitting.cpp ├── box_fitting.h ├── component_clustering.cpp ├── component_clustering.h ├── ego_velo.txt ├── ego_yaw.txt ├── gaus_blur.cpp ├── gaus_blur.h ├── ground_removal.cpp ├── ground_removal.h ├── imm_ukf_jpda.cpp ├── imm_ukf_jpda.h ├── main.cpp ├── ukf.cpp └── ukf.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/README.md -------------------------------------------------------------------------------- /mscThesis_Final_Submit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/mscThesis_Final_Submit.pdf -------------------------------------------------------------------------------- /objtracking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/objtracking.pdf -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/package.xml -------------------------------------------------------------------------------- /result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/result1.png -------------------------------------------------------------------------------- /result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/result2.png -------------------------------------------------------------------------------- /setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/setting.png -------------------------------------------------------------------------------- /src/box_fitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/box_fitting.cpp -------------------------------------------------------------------------------- /src/box_fitting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/box_fitting.h -------------------------------------------------------------------------------- /src/component_clustering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/component_clustering.cpp -------------------------------------------------------------------------------- /src/component_clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/component_clustering.h -------------------------------------------------------------------------------- /src/ego_velo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/ego_velo.txt -------------------------------------------------------------------------------- /src/ego_yaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/ego_yaw.txt -------------------------------------------------------------------------------- /src/gaus_blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/gaus_blur.cpp -------------------------------------------------------------------------------- /src/gaus_blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/gaus_blur.h -------------------------------------------------------------------------------- /src/ground_removal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/ground_removal.cpp -------------------------------------------------------------------------------- /src/ground_removal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/ground_removal.h -------------------------------------------------------------------------------- /src/imm_ukf_jpda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/imm_ukf_jpda.cpp -------------------------------------------------------------------------------- /src/imm_ukf_jpda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/imm_ukf_jpda.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ukf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/ukf.cpp -------------------------------------------------------------------------------- /src/ukf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulg825/3D-Lidar-Multiple-Obstacle-Tracking/HEAD/src/ukf.h --------------------------------------------------------------------------------