Outer and inner contour of the image from the centroid

2 views (last 30 days)
Hello everybody,
I have following image:
I would like to find the Outer and inner contour of the image from the centroid, for example as here:
I would appreciate any help!
Thanks in advance!

Accepted Answer

Image Analyst
Image Analyst on 5 Jan 2015
Use bwconvhull() and then bwboundaries(). The outer is the boundaries of the convex hull. To get the inner, subtract or XOR the original from the convex hull, then call bwboundaries().
  2 Comments
Ivan Shorokhov
Ivan Shorokhov on 5 Jan 2015
Edited: Ivan Shorokhov on 5 Jan 2015
Dear Image Analyst,
I have tried to implement your answer, but it didn't work, could you show me please how to do it right.
Here is the result and code:
close all; clc; clear all;
original=imread('LA_shape.jpg');
original = rgb2gray(original);
figure; imshow(original);
outer = bwconvhull(original,'objects',4);
subplot(2,2,1);imshow(outer);
B = bwboundaries(outer,'noholes');
subplot(2,2,2); imshow(outer);
for k=1:length(B),
boundary = B{k};
hold on;
plot(boundary(:,2), boundary(:,1));
end
inner = im2bw(original)- outer;
B2 = bwboundaries(inner,'noholes');
subplot(2,2,3);imshow(inner);
for l=1:length(B2),
boundary1 = B2{l};
hold on;
plot(boundary1(:,2), boundary1(:,1),'r');
end
hold off;
subplot(2,2,4); imshow(original);
hold on;
for l=1:length(B2),
boundary1 = B2{l};
plot(boundary1(:,2), boundary1(:,1),'r');
end
for k=1:length(B),
boundary = B{k};
plot(boundary(:,2), boundary(:,1));
end
Image Analyst
Image Analyst on 5 Jan 2015
You need to take special care to handle the top of the U.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!