I have two STL files of medical data.
The Medical Registration Estimator app does not accept this format.
How can I do registration of this two surfaces?
Thanks!
I tried using the registration estimator after saving the triplot images of the stl files.
I tried ICP but the clouds are visualy not registered, far from each other:
%Align Two Point Clouds Using Plane-to-Plane ICP Registration
%reference
reference_data = stlread('ref.stl');
reference_points = reference_data.Points;
ptCloud = pointCloud(reference_points(:,:,:));
pcshow(ptCloud)
%moving
moving_data = stlread('moving.stl');
moving_data_points = moving_data.Points;
moving_ptCloud = pointCloud(moving_data_points(:,:,:));
pcshow(moving_ptCloud)
%Register two point clouds
tform = pcregistericp(moving_ptCloud,reference_ptCloud);
figure
pcshowpair(moving_ptCloud,reference_ptCloud,VerticalAxis="Y",VerticalAxisDir="Down")`
How can I improve it?
Thanks!