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
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ATHIRA
el 5 de Jul. de 2014
Comentada: ATHIRA
el 17 de Jul. de 2014
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 comentarios
Respuesta aceptada
Image Analyst
el 5 de Jul. de 2014
fullImage = [leftHalf, rightHalf];
3 comentarios
Image Analyst
el 5 de Jul. de 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?
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!