how to extract features from 350 clusters | extractEigenFeatures
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello All,
I have around 350 clusters and I am trying to retain only matching clusters and remove unmatched ones. How to use this example in this case https://www.mathworks.com/help/lidar/ref/pcshowmatchedfeatures.html
댓글 수: 2
Venkata Ram Prasad Vanguri
2021년 10월 11일
Hi,
We can extract matched cluster segments and corresponding features from the matched index pairs as below:
matchedSegments1 = segments1(indexPairs(:,1));
matchedSegments2 = segments2(indexPairs(:,2));
matchedFeatures1 = eigFeatures1(indexPairs(:,1));
matchedFeatures2 = eigFeatures2(indexPairs(:,2));
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Preprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!