How to pass from a set of points to lines interpolating them?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone! I have obtained the following skeletonization
However, if you zoom, you see that the pink lines are not lines but they are series of rectangles that contain points, like you can see in this figure here below.
I would like to know how to pass from these points (contained in the rectangles) to approximate lines that trace the skeletonization in pink (Maybe there is an approximative interpolation that can do this (?)). Could anyone help me? Thanks in advance
4 件のコメント
採用された回答
Matt J
2022 年 6 月 12 日
編集済み: Matt J
2022 年 6 月 12 日
Image=load('codice_opcode.mat').out;
B=bwboundaries(Image); B(1)=[];
imagesc(Image); colormap(gray); axis image;
hold on
for i=1:numel(B)
[x,y]=cellBoundary(Image,B{i});
plot(x,y,'r','LineWidth',2)
end
hold off
zoom(4)
function [x,y]=cellBoundary(BW,b)
sz=size(BW);
Z=false(sz);
Z( sub2ind(sz,b(:,1),b(:,2)) )=1;
Z=imdilate(Z,ones(3))&BW;
b=bwboundaries(Z,'noholes');
[x,y]=deal(b{1}(:,2), b{1}(:,1));
end
4 件のコメント
Matt J
2022 年 6 月 14 日
Just put the output of cellBoundary somewhere convenient, e.g.,
[x{i},y{i}]=cellBoundary(Image,B{i});
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!