How to substitute "getimage" function?
조회 수: 2 (최근 30일)
이전 댓글 표시
I don't have a the Image Toolbox installed in my pc in my new company and I would like to know how to substitute the getimage function for now:
function addchippicture_button_callback(hObject, eventdata, handles)
global dataStruct
[FileName,PathName] = uigetfile('*.png');
chip_image = strcat(PathName,FileName);
chip_image = imread(chip_image);
image('Parent', handles.chip_axes, 'CData', flipdim(chip_image,1));
axis(handles.chip_axes,'tight');
dataStruct.chip_image = flipdim(getimage(handles.chip_axes),1);
end
Thank you very much!
댓글 수: 0
채택된 답변
Alex Taylor
2013년 8월 26일
편집: Alex Taylor
2013년 8월 26일
The point of the previous comments is that the 'CData' property of the HG image object is what you want to query. The use of things like imshow was just to demonstrate an example. Here is a non-IPT specific example:
hFig = figure;
hIm = imagesc(rand(200,200));
im = get(hIm,'CData');
Or, if you only have an axes handle in your particular scope:
hIm = findobj(handles.chip_axes,'type','image');
im = get(hIm,'CData');
댓글 수: 3
Image Analyst
2013년 8월 26일
편집: Image Analyst
2013년 8월 26일
That's the same thing I told you and you said it didn't work. Anyway if you use imagesc(), it applies some kind of funky colormap for gray scale images by default that's usually not what you want (Alex, why is that?) so you might also want to apply the desired colormap, such as gray(256), to get rid of it otherwise I think it will be applied to the image you extract from the axes.
Alex Taylor
2013년 8월 27일
The default colormap of the figure is jet, which is what you get when you call imagesc. You are free to set the colormap property of the HG figure to whatever you want. In imshow, we set the colormap to a grayscale colormap.
The 'CData' property of the image object is completely independent of the colormap property of the Figure. The 'CData' defines a set of indices, the 'Colormap' of the figure defines how those indices will be resolved into colors:
h_fig = figure;
h_im = imagesc([1 2; 3 4]);
get(h_im,'cdata')
hfig = figure('colormap',gray(4));
h_im = imagesc([1 2; 3 4]);
get(h_im,'cdata')
추가 답변 (2개)
Image Analyst
2013년 8월 26일
Get the CData property. Try
h = image(......
get(h,'CData')
or maybe this is what you want
dataStruct.chip_image = flipud(chip_image);
댓글 수: 2
Image Analyst
2013년 8월 26일
I think you did something wrong. Show your code. Why do you want the display data anyway, instead of the actual original data? This seems to be a dangerous thing to do and I would not recommend it at all. The displayed data could be changed in ways that you are not aware of. I think you'd be better off using the original data you got from imread().
Wayne King
2013년 8월 26일
Try
get(h,'CData')
on the graphics handle.
For example:
I = imread('cameraman.tif');
h = imshow(I);
A = get(h,'CData');
isequal(I,A)
figure;
imshow(A)
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Red에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!