フィルターのクリア

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

2 ビュー (過去 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