View plane overlapped with point cloud.
Afficher commentaires plus anciens
Using the function pcfitplane, I get an equation of a plane. In this case, it is [-0.097 -0.055 0.993]. How can I view it such that it overlaps with my point cloud ?
Réponses (1)
mdl = pcfitplane(...);
pcshow(ptCloud);
hold on
% The returned planeModel object has a plot method
plot(mdl);
1 commentaire
Meghana Dinesh
le 16 Sep 2015
Catégories
En savoir plus sur Point Cloud Processing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!