├── CMakeLists.txt ├── README.md ├── Ubuntu_18.04_PCL_1.9.1_install.sh ├── media └── result.gif └── src ├── environment.cpp ├── processPointClouds.cpp ├── processPointClouds.h ├── render ├── box.h ├── render.cpp └── render.h └── sensors ├── data └── pcd │ └── data_1 │ ├── 0000000000.pcd │ ├── 0000000001.pcd │ ├── 0000000002.pcd │ ├── 0000000003.pcd │ ├── 0000000004.pcd │ ├── 0000000005.pcd │ ├── 0000000006.pcd │ ├── 0000000007.pcd │ ├── 0000000008.pcd │ ├── 0000000009.pcd │ ├── 0000000010.pcd │ ├── 0000000011.pcd │ ├── 0000000012.pcd │ ├── 0000000013.pcd │ ├── 0000000014.pcd │ ├── 0000000015.pcd │ ├── 0000000016.pcd │ ├── 0000000017.pcd │ ├── 0000000018.pcd │ ├── 0000000019.pcd │ ├── 0000000020.pcd │ └── 0000000021.pcd └── lidar.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/README.md -------------------------------------------------------------------------------- /Ubuntu_18.04_PCL_1.9.1_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/Ubuntu_18.04_PCL_1.9.1_install.sh -------------------------------------------------------------------------------- /media/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/media/result.gif -------------------------------------------------------------------------------- /src/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/environment.cpp -------------------------------------------------------------------------------- /src/processPointClouds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/processPointClouds.cpp -------------------------------------------------------------------------------- /src/processPointClouds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/processPointClouds.h -------------------------------------------------------------------------------- /src/render/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/render/box.h -------------------------------------------------------------------------------- /src/render/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/render/render.cpp -------------------------------------------------------------------------------- /src/render/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/render/render.h -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000000.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000000.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000001.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000001.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000002.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000002.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000003.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000003.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000004.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000004.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000005.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000005.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000006.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000006.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000007.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000007.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000008.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000008.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000009.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000009.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000010.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000010.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000011.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000011.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000012.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000012.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000013.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000013.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000014.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000014.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000015.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000015.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000016.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000016.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000017.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000017.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000018.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000018.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000019.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000019.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000020.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000020.pcd -------------------------------------------------------------------------------- /src/sensors/data/pcd/data_1/0000000021.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/data/pcd/data_1/0000000021.pcd -------------------------------------------------------------------------------- /src/sensors/lidar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DK-sr/SFND_Lidar_Obstacle_Detection/HEAD/src/sensors/lidar.h --------------------------------------------------------------------------------