简体   繁体   中英

3D point cloud edge or wrap detection

after a segmentation step, I would like to detect the edge of every point cloud object in my scene. So does anyone know some alternative to do this in python?

Solution: I use lasboundary to get the cancave hull so I got the edge of my sets. We only shoul specify alpha to get convex or concave hull. Here is a sample of code with python:

import os
os.system('lasboundary -i mysets.txt -o myedge.txt -concavity 0.05')

Result is written in myedge.txt.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM