필터 지우기
필터 지우기

I have divide an image into left half and right half.i want to combine this left half and right half into a single original image. Please help me to write the code

조회 수: 1 (최근 30일)
I have divide an image into left half and right half.i want to combine this left half and right half into a single original image. Please help me to write the code.

채택된 답변

Image Analyst
Image Analyst 2014년 7월 5일
fullImage = [leftHalf, rightHalf];
  댓글 수: 3
Image Analyst
Image Analyst 2014년 7월 5일
It should work. Try this
maxValue = max(leftHalf(:))
maxValue = max(rightHalf(:))
imshow(leftHalf);
uiwait(msgbox('This is the left half'));
imshow(rightHalf);
uiwait(msgbox('This is the right half'));
What do you see in the command window and your axes?

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by