Almost any sensor yields more interesting results if mounted on a moving platform. Remember scanning thermometer? It’s time to mount TOF LIDAR (Time Of Flight / Light Imaging, Detection, And Ranging) on two precision rotary stages arranged for pan and tilt operation. Rig provides real-time position data along with distance to an obstacle. Using simple math we can calculate the position in Cartesian coordinate system. Data is collected point-by- point to reconstruct 3D object model.

Used parts

I have been looking for LIDAR for a while and decided to use Garmin as an affordable distance sensor, so bought one for a spin.

Modular motorized rotary stage Kurokesu RSA1Motion controller Kurokesu SCA1Arduino nano (Atmega 328p) with Garmin LIDAR-Lite 3Laptop computerBattery pack for controller

Results

Garmin LIDAR outputs data at up to 500 measurements a second which is way faster than the thermal sensor, yet it takes about 15 minutes to scan full sphere yielding true scale 1-2M point cloud. No stitching, no lengthy post processing! And the result is spectacular. Animated GIF for better depth perception. Calculated point cloud normals and colorized according to their vector direction. Click for better quality on Youtube.

This is another fast scan with higher rotation speed. Result is 300K point cloud.

4.7M point cloud room view from above with colors removed. From this picture, it’s possible to see that distance measurement could be more precise and laser beam angle could be narrower. Density is pretty even which indicates nice rotary stage performance and correct calculation.

Depth map colorized as heat map colors and fixed black pixels. This imaging is useful for fast quality inspection.

Unfortunately, this particular LIDAR is not quite suitable for outdoor mapping. The laser is too weak even in dusk and measurement rate drops, therefore scanning speed has to be reduced and it would take hours to cover a longer range. Click for better quality on Youtube.

Laser barely reaches 4’th floor, therefore making it not suitable for long range outdoor operation.

Software

I have written set of Python scripts to make scans like this. As release is still pending, will briefly describe what they do:

Scan

Fill dead pixels

Finding of black pixels can be done by brute force but it will take ages. Speed up can be done by using numpy functionality:

Aggregate

Pan/tilt/distance conversion to x,y,z is as simple as these formulas: That’s it. Now point cloud file can be opened with preferred 3D manipulation program like MeshLab

Improvements and notes

The main part to be improved is LIDAR. Faster acquisition rate, smaller beam expansion, better precision and greater power is required. Motion platform operation is quiet, smooth, fast and precise.Though with faster laser fast axis might be limiting factor. Draft software lacks real-time preview of what’s happening, but that’s easy to update. One slip-ring is damaged (or bad by design) and sometimes I2C communication is interrupted – added watchdog protection to restore LIDAR operation. One more major update could be getting rid of the laptop, instead using single board computer with tablet or smartphone connected over WiFi.

About the Author

Saulius Lukšė is an engineer with a demonstrated history of working in the wireless industry. He is a founder of Kurokesu, an e-shop where he sells his designs and solutions like touch probe, Raspberry Pi case, C920 webcam rework kit, high sensitivity USB camera and others. You can check out his products on his website and look him up on Facebook and Twitter. This article was also published here and shared with permission.