How to save imshowpair figure using imwrite?

How would I save the following as a binary image? I want to use imwrite, or be able to save it as a variable in the workspace so that I can use bwskel.
registered = imregister(Moving,Fixed,'Similarity',optimizer,metric);
figure
A = imshowpair(registered,Fixed);

Antworten (2)

Guillaume
Guillaume am 6 Feb. 2020

5 Stimmen

No, no, no, don't use print or saveas, this is possibly going to rescale your image, change the the colour depth, etc.
A simpler and reliable way is to use imfuse instead of imshowpair. imshowpair is for displaying a pair, imfuse is for creating an image of the pair. In any other way, they work exactly the same and have the same options
registered = imregister(Moving,Fixed,'Similarity',optimizer,metric);
fusedpair = imfused(registered, Fixed);
imwrite(fusedpair, 'somefile.png');

3 Kommentare

Vinai Datta Thatiparthi
Vinai Datta Thatiparthi am 7 Feb. 2020
Bearbeitet: Vinai Datta Thatiparthi am 7 Feb. 2020
Thanks @Guillaume, this is clearly a better approach.
Kirsty Bennett
Kirsty Bennett am 20 Feb. 2020
Thank you so much!! Literally saved me today :D
Is it possible to save three images using the same process?

Melden Sie sich an, um zu kommentieren.

Vinai Datta Thatiparthi
Vinai Datta Thatiparthi am 4 Feb. 2020

0 Stimmen

Hey Kirsty,
Since imshowpair returns class matlab.graphics.primitive.Image, imwrite cannot be used directly. Instead, you can use the functions -
saveas(gcf, 'savedImage.jpeg', 'jpeg');
print(gcf, '-djpeg', 'savedImage.jpeg', '-r0'); % Print allows you to specify the resolution
% at which you want to save the image
Hope this helps!

Produkte

Version

R2019a

Gefragt:

am 31 Jan. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by