Overlay two pointclouds to compare them
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ptCloudA=readmatrix('Herramienta_1_1.txt');
ptCloudB=readmatrix('Herramienta_1_12.txt');
>> pcshowpair(ptCloudA,ptCloudB)
Error using pcshowpair
Expected ptCloudA to be one of these types:
pointCloud
Instead its type was double.
Error in pcshowpair (line 76)
validateattributes(ptCloudA, {'pointCloud'}, {'scalar'}, 'pcshowpair', 'ptCloudA');
Hello, I have two .txt files with points cloud from a confocal microscope. I want to plot both points cloud and overlay them. I have tried the above but this error appears. I´m really noon in matlab so i dont understand anything.
I have managed to display both by applying this:
>> ptCloudA=readmatrix('Herramienta_1_1.txt');
ptCloudB=readmatrix('Herramienta_1_12.txt');
pcshow(ptCloudA,'b')
hold on
pcshow(ptCloudB,'r')
but i would like to know how to use the pcshowpair command.
Thanks
0 commentaires
Réponses (1)
Srivardhan Gadila
le 15 Nov 2021
The inputs ptCloudA & ptCloudB should be pointCloud objects, refer to the documentation of pcshowpair for more information.
Refer to the documentation of pointCloud for converting the matrices ptCloudA & ptCloudB into pointCloud objects.
0 commentaires
Voir également
Catégories
En savoir plus sur Point Cloud Processing 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!