Segmentation of UAV point cloud
조회 수: 1 (최근 30일)
이전 댓글 표시
The point cloud contains a row of continuous trees. I want to segment individual trees. Kindly help. I tried it by distance, there are death trees inbetween.
댓글 수: 6
Benjamin Thompson
2022년 6월 13일
Can you define the data in the IAS and CSV files? What does each column mean?
답변 (1개)
Githin George
2023년 10월 20일
Hello,
I understand you have point cloud data for a row of trees and would like to segment the individual trees and extract their attributes.
I’ve attached an example which describes the segmentation process below.
Note that you will have to convert the unorganized point cloud data to organized point cloud.
In case you would like to use the unorganized pcd, you can try the following steps as a workaround.
- Use statistical measures like ‘min’ of data to manually remove ground data points and apply “pcsegdist” function to get better segmentation results.
- Classify the segments into dead trees by comparing statistics like ‘mean’ of height, or ‘std variance’ of width.
- In case using “pcsegdist” once is not yielding good results, you could try applying it again on the obtained segments but with finer value of ‘minDistance’ parameter.
Please refer to the following documentation link for further information on “pcsegdist” function.
I hope this helps.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Point Cloud Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!