I have a point cloud for which I would like to extract the coordinates of the single point where the point cloud reach its maximum value.
I can use the pointCloudStatisticsCalculator to obtained the maximum value of x. Is there a way to obtain the corresponding ordinates (y) and altitude(z) values for that x without coercing the pointcloud?
Thanks
Best answer by takashi
I don't think there is a super efficient way to do that, but this procedure could be better than coercing the entire point cloud.
PointCloudSorter: Sort the points within the point cloud by x descending.
PointCloudThinner: Thin the point cloud to just the first one point (i.e. the point with maximum x).
PointCloudCoercer: Coerce the point cloud into a single point and preserve (x, y, z) as attributes.
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.