Azzera filtri
Azzera filtri

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 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Image Analyst
Image Analyst il 5 Lug 2014
fullImage = [leftHalf, rightHalf];
  3 Commenti
Image Analyst
Image Analyst il 5 Lug 2014
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?

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by