Isolate the outline of a shape.

조회 수: 8 (최근 30일)
Alex Perrakis
Alex Perrakis 2021년 8월 31일
댓글: Matt J 2021년 8월 31일
Hello i have through binarizing and using bwpropfilt i have got the attached image, my question is : does anyone have an idea how i can isolate the outline of the shape in the middle and have it as a shape?

채택된 답변

Matt J
Matt J 2021년 8월 31일
편집: Matt J 2021년 8월 31일
Perhaps as follows?
load Image
BW=bwareafilt(Image,1);
BW=imerode(bwconvhull(BW),strel('disk',20))& ~BW;
BW=imopen(BW,ones(10,1));
BW=bwperim(bwareafilt(BW,1));
imshow(BW); zoom(3)
  댓글 수: 2
Alex Perrakis
Alex Perrakis 2021년 8월 31일
Thanks i found a way with bwboundaries, now i have another problem.
pic01=imread("01.tiff");
pic050=imread("32.tiff");
%pic50=im2gray(pic050);
%pic1=im2gray(pic01);
newpicture=imsubtract(pic01,pic050);
%imshow(newpicture)
level = graythresh(newpicture);
level = 0.1405;
newbinpic = imbinarize(newpicture,level);
%imshowpair(newpicture,newbinpic,'montage')
newbinpic2=bwpropfilt(newbinpic,'perimeter',1);
imshowpair(newbinpic2,newpicture,'montage');
boundaries = bwboundaries(newbinpic2);
binaryImage = 0.6< newbinpic2 & newbinpic2<1;
hold on
for k=1:length(boundaries)
thisBoundary = boundaries{k};
x = thisBoundary(:,2);
y = thisBoundary(:,1);
plot(x,y,'r-','Linewidth',2);
end
I wanna somehow save the x and y coordinates and plot em in a normal plot, because this plots it on the image i linked before.
Matt J
Matt J 2021년 8월 31일
Thanks i found a way with bwboundaries, now i have another problem.
If so, you should post it as a new question.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by