Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.04 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.04 KB

lidarSimulator

This project will eventually contain a ROS node to simulate a LiDAR point cloud that would be generated by a placing objects in the scene discribed by stl objects.
The data this simulation produces will eventually be used to train a neural network on detecting certain objects in those point clouds.

The point cloud is generated by raytracing each laser beam produces by the LiDAR scanner.

The original raytracing code can be found under tinytracer.

TODO

  • Load different objects from stl files
  • Integrate in ROS compilation
  • Use ROS/tf vectos and point objects
  • Export hit points instead of image
  • Form rays according to LiDAR scanner instead of pixelwise
  • Moveable objects (Offset from LiDAR)
  • Publish as ROS visualization message
  • Expose a ROS action or actionLib server
  • Use same coordinate system for everything (Z pointing to sky, Y pointing out of screen)
  • Calculate Intensities
  • Performance optimizations
  • OpenCL for actual raytracing