save large image/figure

조회 수: 14 (최근 30일)
GeorgeLab
GeorgeLab 2015년 5월 19일
편집: Keyes34 2015년 6월 30일
I have a large mxn (~300,000 x 75) element matrix that I would like to save as an image or pdf without any compression. I'm currently using imagesc() to display. I've used the print function to set my own resolution but I'm having difficulty achieving the desired result. The image is a large time series that I would like to save in such a way that I may zoom in over a region, and transmit the complete series to others without any losses. Is there a simple method to save large , essentially banner sized, images / figures?

채택된 답변

Image Analyst
Image Analyst 2015년 5월 19일
Why not save it as a PNG format image file with imwrite()?
Or just save the variable as a .mat file with save()?
  댓글 수: 4
GeorgeLab
GeorgeLab 2015년 5월 19일
I've tested the imwrite solution you've given with a quick random matrix, and it appears to work exactly as I need. thank you! This is a start. Now I just need to figure out how to remap my matrix into an indexed image with a color map!
Image Analyst
Image Analyst 2015년 5월 20일
Well the easiest way to do that is with the Image Processing Toolbox which you said you don't have. You would be able to use functions like rgb2ind() and ind2rgb(). You can do it manually without too much trouble though if you know how you want to quantize your colors. rgb2ind() helps out there because it figures out the colormap and indexes for you.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Ingrid
Ingrid 2015년 5월 19일
I always use the export_fig figure for saving images since this doesn't crop the figure so you might want to look at this?

GeorgeLab
GeorgeLab 2015년 5월 19일
편집: GeorgeLab 2015년 5월 19일
I'm able to get the export_fig function to output images (even though some of the options seem to have a compatibility issue with 2015a. However, the higher resolution images it's giving me are "higher resolution" of the compressed figure's image. Meaning I'm still unable to zoom in on the image and see the original data. the -native and -q options from what I've read aren't handling the 2015.
%%update: I see what's happening here I believe. when displaying the image I get a warning saying "too big to fit on screen displaying at 1%" so the data is being compressed to fit the figure size. The usual commands will only save images of this compressed data. I don't particularly care about displaying it, I need a way to save the 100% scale data as an image to view with windows photo-viewer.%%
  댓글 수: 8
Image Analyst
Image Analyst 2015년 6월 30일
Well obviously if you set Visible to off, the figure will be not visible and so what is there for export_fig() to save???
This works:
RGBImage = imread('peppers.png');
% Display figure with image in an axes.
imshow(RGBImage);
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
% Get rid of tool bar and pulldown menus that are along top of figure.
set(gcf, 'Toolbar', 'none', 'Menu', 'none');
% filename = sprintf('ROI_%s.bmp', Img{imageCount})
% export_fig(filename, '-a2')
If the image is only 75 pixels high and 300 thousand wide, then it will show up on the screen as just a line because of the extreme aspect ratio. Why don't you just save it with imwrite()? I mean, there's no way you could put any annotation on that image anyway, and saving annotation is the main advantage export_fig() has over imwrite().
Keyes34
Keyes34 2015년 6월 30일
편집: Keyes34 2015년 6월 30일
Oh. I see. Well then. Thought the guy's suggestion above would work.
To be honest, export_fig was mainly for this part of my code. Contour lines don't appear in imwrite, but they do in export_fig.
figure,imshow(RGBImage); hold on; %Hold for contour lines.
contour(Marked_ROI,[0 0],'b','LineWidth',2); %hold off;tried here b4
%Marked_ROI is a binary image.
filename = sprintf('ROI_%s.bmp', Img{imageCount});
imwrite(RGBImage, filename);
hold off;

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by