Get an image export with plot hold on
Show older comments
Hi, I was wondering if anyone would know how to export an image that has had a hold on it and a Plot. I'll explain.
I have an image where I detect the contour and what I want to save is the original image where the points that are blue contours overlapping the original image are shown.
clear all; clc; close all
I = rgb2gray(imread('tumor_091R.tif'));
BW = edge(I,'Canny',100/255);
[r,c] = find(BW == 1);
figure
imshow(I)
hold on
plot(c,r,'.')
exportgraphics(gcf,'11.tif')
When I'm in Matlab and I zoom in on a certain area what I get is this:

But when I export it using the exportgraphics command what I get when I zoom in on the area I want to see is a spot of the type I show:

What I want to achieve is that the image I export allows me to zoom in as Matlab does, I tried the getframe option but the result was the same. Thanks in advance
Accepted Answer
More Answers (0)
Categories
Find more on Printing and Saving 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!
