Closed lizhuangcui closed 3 months ago
As indicated in the traceback, the error comes from the sklearn's RANSACRegressor
, which is used in our GroundElevation
transform. The error tells you you probably do not have enough points to run RANSAC on. Check the size of the input Data
passed to GroundElevation
: do you have enough points there ? Investigate whether something strange is happening there. If you are working on your own point cloud and not one of the officially supported datasets, then maybe you need to adjust the GroundElevation
parameters to suit your data ? For this, make sure you have a look at our documentation for GroundElevation
(in the associated docstring) to understand how that works. And see how we parameterized it for other datasets, for reference.
I encountered the same problem, and I used the DALES dataset.I downloaded it from the official website.It named DALESObjects.tar.gz.What's going on here?Please.
Thank you for sharing this project,and I encounter a problem. please!