How to save the proceesed image in the same size as input image
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I need to save the proceesed image in the same size (width and height) as the input image. I tried below script, but it still saves teh image in the smaller size than the input same.
width=2472;
height=2062;
set(gcf,'position',[x0,y0,width,height])
3 Kommentare
Akzeptierte Antwort
Matt J
am 3 Mai 2025
outputImage=imresize(outputImage,OutputSize=size(inputImage));
imwrite(outputImage , filename);
6 Kommentare
Image Analyst
am 3 Mai 2025
You could do it more simply like this:
outputImage = mat2gray(GMag); % Convert to gray scale image in the range 0-1.
imwrite(outputImage, 'output.png'); % Will save as PNG in the range 0-255.
No need for calling im2uint8(), and ind2rgb(), and gray(), unless for some reason you wanted your grayscale image to be a true color RGB image (but still appearing as grayscale).
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Modify Image Colors finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!