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
4 次查看(过去 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.
0 个评论
采纳的回答
Image Analyst
2014-7-5
fullImage = [leftHalf, rightHalf];
3 个评论
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!