I need to extract the extents of LiDAR point cloud data.
The HullAccumulator not the HullReplacer does not seem to export the extents. Instead it outputs a bounding box, which is not what I need.
Please see image below:
Please see the example simple workbench with sample data attached.
Please can you help what I am doing wrong?
Your help much appreciated!
Many thanks,
Magda
Best answer by takashi
Hi @wilczekmj, I was able to reproduce the same symptom. I think the HullReplacer should generate true convex hull rather than bounding box. Hope someone from Safe will investigate this issue. @NatalieAtSafe
As an interim workaround, you can transform the point cloud into a Single Multipoint geometry with the PointCloudCoercer (Output Geometry: Single Multipoint), then use the HullReplacer to generate the convex hull.
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.
Hi @wilczekmj, I was able to reproduce the same symptom. I think the HullReplacer should generate true convex hull rather than bounding box. Hope someone from Safe will investigate this issue. @NatalieAtSafe
As an interim workaround, you can transform the point cloud into a Single Multipoint geometry with the PointCloudCoercer (Output Geometry: Single Multipoint), then use the HullReplacer to generate the convex hull.
Hi @wilczekmj, I was able to reproduce the same symptom. I think the HullReplacer should generate true convex hull rather than bounding box. Hope someone from Safe will investigate this issue. @NatalieAtSafe
As an interim workaround, you can transform the point cloud into a Single Multipoint geometry with the PointCloudCoercer (Output Geometry: Single Multipoint), then use the HullReplacer to generate the convex hull.
Hi @wilczekmj - that appears to be a known issue. For your reference it is filed as PR#66381 and I have added a link to this thread and increased the priority.
For now the only workaround is the PointCloudCoercer as @takashi suggests.