How can I save ROI parameters from DrawFreehand and load it onto another image?

22 views (last 30 days)
I'm working on a programme that analyses the contents within an ROI (such as Mean Grey Intensity). The images i want to measure are not clear enough to draw an ROI, but I have an image that is the same size (160x160px) and I would like to draw the ROI on that image and then display that ROI on the other images. I have the images uploaded in "axes" in the app designer. Any help is appreciated.
  2 Comments
Image Analyst
Image Analyst on 20 Feb 2021
Don't you have the variable from drawfreehand()? How did it disappear? Did it go out of scope? If so, save it to a .mat file. Show us how you call it.
Sami Case
Sami Case on 20 Feb 2021
I do have the variable from drawfreehand(), but i am not sure how to call it? Its not disappearing, it shows on the image that I draw it on. However, I'm not sure how to display the saved ROI onto another image. I'm new to all of this, also, so please excuse my ignorance.
To draw and save it, I use:
h = drawfreehand(app.UIAxes_Green);
save('roi.mat', 'h');

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 20 Feb 2021
Here is what I do:
% User draws curve on image here.
hFH = drawfreehand();
% Get the xy coordinates of where they drew.
xy = hFH.Position
% get rid of imfreehand remnant.
delete(hFH);
% Overlay what they drew onto the image.
hold on; % Keep image, and direction of y axis.
xCoordinates = xy(:, 1);
yCoordinates = xy(:, 2);
plot(xCoordinates, yCoordinates, 'r.', 'LineWidth', 2, 'MarkerSize', 12);
caption = sprintf('Original Grayscale Image.\nPoints may not lie on adjacent pixels, depends on your speed of drawing!');
title(caption, 'FontSize', fontSize);
See attached full demo. Once you have xCoordinates and yCoordinates, you can save them and apply them to other images, for example by using them to create a mask with poly2mask().
  2 Comments
Sami Case
Sami Case on 23 Feb 2021
I've been able to work on this and create a mask with poly2mask(). But I'm not sure how to display that mask over another image?

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!