필터 지우기
필터 지우기

Combine two images from two callbacks

조회 수: 1 (최근 30일)
as hz
as hz 2014년 8월 26일
답변: Geoff Hayes 2014년 8월 26일
Hi,
One of the images is based on setappdata in a callback
setappdata(handles.imageAxes, 'IVariable', displayedImage.cdata);
and the other one is a handles.myImage , which is mainly a I = imread(fullFileName) in another callback.
The script below is not working and I think it is because of the cdata, how can I fix it?
Thanks a lot.
Script:
I = getappdata(handles.imageAxes , 'IVariable');
X = handles.myImage;
Icombine = [X I];
figure
imshow(Icombine);
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2014년 8월 26일
When you say it is not working, do you mean that there is an error message, and if so, what is it?
What are the dimensions of X and I?
as hz
as hz 2014년 8월 26일
They have different dimensions, an example:
cdata 370x555x3 uint8
I 735x1106x3 uint8
Errors are: Error using vertcat CAT arguments dimensions are not consistent.
Error in TRY4>combineButton_Callback (line 433) Icombine = [X I];

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

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 8월 26일
Due to the different number of rows, the error message makes sense. Though I would have expected a
Error using horzcat
Dimensions of matrices being concatenated are not consistent.
if the line code is
Icombine = [X I];
The error message you posted (with vertcat) implies that you are combining the images one of above the other as
[X ; I]
So, if horizontal concatenation (first method), then the two images need to have the same number of rows. If vertical concatenation (second method) then the two images need to have the same number of columns. In order to get the same number of rows (or columns) then you can use imresize, if you have the Image Processing Toolbox.
Or, you can concatenate a portion of the larger image with the smaller one. For example,
Icombine = [X I(1:370,:,:)];
Though you will obviously lose some of the larger image in this combination.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by