imellipse, impoly, etc. to create mask, keeping the border.

2 views (last 30 days)
Hello, I am using imellipse, imfreehand, impoly and imrect to create a mask after selecting an area of an image. This works well and I have no problem with this. What I would like to do now is that when drawing the shape, e.g. an ellipse, not only will I use it to create the mask and further actions, but the border of the ellipse drawn will still show, the outline of the selection.

Accepted Answer

Image Analyst
Image Analyst on 7 Jul 2015
After you call the function, you have to get the x,y coordinates, and then call hold on and plot()
hold on;
plot(x,y, 'b-');
See attached demo.
  1 Comment
Fer
Fer on 7 Jul 2015
Thanks a lot, as usual your answer was very helpful!
This is what the code ended up looking like, in case anybody has a similar question:
axialROI=imellipse;
axialROImask=createMask(axialROI, handles.currentAxialDisplay);
roiboundaries=bwboundaries(axialROImask);
xy=roiboundaries{1};
x=xy(:,2);
y=xy(:,1);
hold on;
plot(x,y, 'g--');

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!