how to extract features from 350 clusters | extractEigenFeatures
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Venkata Ram Prasad Vanguri
le 11 Oct 2021
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));
Pavan Kumar B N
le 11 Oct 2021
Modifié(e) : Pavan Kumar B N
le 11 Oct 2021
Réponses (0)
Voir également
Catégories
En savoir plus sur Preprocessing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!