-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding VLP-16 to blendodyne #21
Comments
Dear Galto, thank you for your message. Support is always welcome. Adding the VLP-16 does not really require you to implement a whole new sensor, because it is probably very similar to the HDL-32 and HDL-64 Adding it would require you to store an array for the 16 vertical angles (like laser_angles and laser_angles_32), add a new element to the models array, and all the code that makes the distinction between the different types of velodyne sensors. Take a look at blendodyne.py and search for 32e2 to see where you need to add code to support another sensor. If you need advice, just let me know Michael |
Thanks Michael Is there a particular reason why the laser angles appear to be staggered ? For example the angles for the HDL-32 don't appear to be in a nice successive order, but instead appear to be interleaved pairs of two series (-30.67, -29.33, ...,-10.67) and (-9.33, -8.00, ... 10.67)
Thanks Galto |
Got the answer - these are the firing orders http://velodynelidar.com/docs/manuals/63-9113%20HDL-32E%20manual_Rev%20H_Sept.pdf |
Hello
I'd like to add a VLP-16 to blendodyne. I understand I can use "generic LIDAR" to simulate a VLP-16, but I have been looking at the code and I think it would be a good exercise for myself (I am a C++ programmer just learning up on Python and bpy) to add it as another sensor supported by blendodyne.
Can you perhaps please give me a high level layout on what files and what portions I need to edit for adding the VLP-16 to blendodyne and perhaps some relevant pointers/advice/caveats, etc... if applicable?
Thank you in advance and also thank you for this great tool!
Galto
The text was updated successfully, but these errors were encountered: