Clear Filters
Clear Filters

roipoly for multiple shapes

4 views (last 30 days)
Thomas Darwent
Thomas Darwent on 17 Aug 2018
Commented: Image Analyst on 20 Aug 2018
I'm wanting to create multiple closed unconnected shapes using roipoly. I can do this fine for 2 shapes but when I add in the code for a 3rd shape it always connects the last coord of the 3rd shape to the first coord of the 1st shape.
if true
xmask_temp = [];
ymask_temp = [];
junk = [];
for i=1
A=imread(['Image0001.bmp']);
[junk,xmask_temp,ymask_temp]=roipoly(A);
a = 1+size(xmask_temp,1);
xmask(1:size(xmask_temp,1),i)=xmask_temp;
ymask(1:size(ymask_temp,1),i)=ymask_temp;
[junk,xmask_temp,ymask_temp]=roipoly(A);
b = a-1+size(xmask_temp,1);
xmask(a:b,i)=xmask_temp;
ymask(a:b,i)=ymask_temp;
b = b+1;
[junk,xmask_temp,ymask_temp]=roipoly(A); % where the problem starts
c = b-1+size(xmask_temp,1);
xmask(b:c,i)=xmask_temp;
ymask(b:c,i)=ymask_temp;
end
B = roipoly(A,xmask,ymask);
imshow(B);

Accepted Answer

Image Analyst
Image Analyst on 17 Aug 2018
In the loop, call poly2mask() to get a new mask for the new polygon they draw. Then OR it in with the image.
Before the loop
mask = false(rows, columns); % Initialize final mask
Then in the loop
thisMask = poly2mask(xVertices, yVertices, rows, columns);
mask = mask | thisMask; % Combine this mask with the final mask.
That way you build up the final mask by ORing in each individual mask one at a time. Change variable names to whatever you're using, of course.
  2 Comments
Thomas Darwent
Thomas Darwent on 20 Aug 2018
Hi, Thanks for your help. This method does build up an image of unconnected shapes but for the application we are using we need to build this image using roipoly.
Image Analyst
Image Analyst on 20 Aug 2018
Why do you say "but"? You still use roipoly(). You just also use poly2mask to create a mask from those vertices, and then OR in that mask with a cumulative mask you're building.
If you can't figure it out, attach 'Image0001.bmp' and I'll make a full demo.

Sign in to comment.

More Answers (0)

Categories

Find more on Author Block Masks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!