How to save images with same resolution when using set() function?

1 vue (au cours des 30 derniers jours)
Aj_ti
Aj_ti le 21 Sep 2016
Commenté : Walter Roberson le 21 Sep 2016
According to code below, both of my inputs are size 250X250. But the code fail to get me output of same size as inputs.
E = rgb2gray(imread('nofill.png'));
imshow(E, 'InitialMag', 'fit')
I = rgb2gray(imread('black.png'));
imshow(I, 'InitialMag', 'fit')
imshow(E, 'InitialMag', 'fit')
% Make a truecolor all-green image.
green = cat(3, zeros(size(E)),ones(size(E)), zeros(size(E)));
hold on;
h = imshow(green);
hold off
% Use our influence map as the
% AlphaData for the solid green image.
set(h, 'AlphaData', I)
imwrite(
% print('test','-dpng')
  1 commentaire
Walter Roberson
Walter Roberson le 21 Sep 2016
Your imwrite() appears to have gotten corrupted in the posting.

Connectez-vous pour commenter.

Réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by