-
Notifications
You must be signed in to change notification settings - Fork 29
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
Documentation clarification #6
Comments
I've also been getting familiar with the SDK recently and I can answer some of these questions.
I'd also like some clarification on this. I'd guess that they're doing something similar to what spinning, multi-channel lidar manufacturers do, where each channel has a ring ID. Ouster and Velodyne lidars that rotate 360 degrees and have some number of vertical channels/beams would have a corresponding number of rings in the output cloud. For example, a 64 channel lidar would produce 64 rings, a 128 channel would produce 128 rings, and so on. That said, I'm not sure how that translates to this lidar since 1) there aren't truly distinct channels/beams/rings, and 2) I think there would be more than 18. If I had to guess, I'd say that they probably split the cloud up into 18 regions, but I think that would mean every 5 degrees of vertical FOV. Or perhaps it's every 10 degrees of the full 180, but that seems even more strange. I just got the ROS node working with my unit last night. Sometime in the next week, I can look closer at the data and see if I can tease out how that works here.
The English documentation is surprisingly hard to find on their site, but there's a bit more information in both the user manual (page 11) and unilidar user manual (page 5). FWIW, I've found these documents in English:
I'm certain of one thing here, which is that the time field is an offset for each point. The stamp of the overall point cloud will be the beginning time and the time for each point is an offset from the point cloud stamp. Now, I'm not yet sure if this is in milliseconds, microseconds, or nanoseconds. I would suspect that it's not the latter since it's a float. |
Hey thanks for responding @bluecamel. Mine is coming in the mail today so maybe I'll get an opportunity to play with it tonight. Also, as an aside, I wonder if there is a way to make this work like a 2D LiDAR by turning off some of the LED. I know that there is this "Ring Light Mode," that has a bunch of bitflags for each LED (which I'm actually assuming really means some azimuth/elevation coordinates of the singular LED). |
Hi guys, The Secondly, the Lastly, the |
What are the actual numbers though? "The higher it is, the slower" doesn't say much. The code is all closed source apparently. I don't think it's asking too much for a $400+ product to give configuration parameters and a datasheet, instead of requiring everyone to do trial and error and graph things just to figure out how they work. Also, exactly how doe these parameters work? I assume the range is in meters, but exactly how do the rest work? How does the yaw bias work? Can it be used to counteract rotational motion of the base, and by what factor per speed unit? |
According to https://oss-global-cdn.unitree.com/Lidar/Unilidar%20SDK%20User%20Manual_v1.0.pdf (in the python section) the parameters have these meanings:
I'm evaluating if I want to buy one of these units, and was examining their example rosbag file. It appears that each rosbag "message" is 18 "rings", whatever those are (1 ring=1 rotation around Z?), and corresponds to the After parsing all the points in their example rosbag file, I converted them to XYZ and plotted in Meshlab as one large pointcloud. The sample appears to be an interior space (office?), and the lidar appears to be mounted with Z horizontal ("front") and X down at the floor. |
I just ordered one of your lidar and am preparing to set up a ROS environment to use the lidar. Upon reviewing your SDK, I had a few questions.
cloud_scan_num
and why is it default set to 18?LEDDisplayMode
and do these effect the scan pattern of the lidar?time
field ofPointUnitree
? Why is this a floating point number? Does this time field have units? Similarly forstamp
inPointCloudUnitree
Thanks for your support. I'm excited to get the hardware in hand and use your lidar!
The text was updated successfully, but these errors were encountered: