Hi,
I'm trying to write a python script to generate point clouds out of images of plants. I want to log some metadata, and have the following two problems:
1: Is there a convenient way to get the number of points in the dense cloud, similar to how it works in the point_cloud member (len(chunk.point_cloud.points))
2: In the string representation of dense_cloud, a number of points is given like this (<DenseCloud '697114 points'>)
But this number does not match the number given in the TOC (427608 in this example), nor does it match the number of points exported via chunk.exportPoints() (427593 in this example). Why is that?
Thanks in advance