Stitching image in 2 direction
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hieu Tran Doan Trung
el 1 de Jun. de 2020
Comentada: Hieu Tran Doan Trung
el 2 de Jun. de 2020
Hello everyone.
Anyone know how to sitching 2 images in 2 direction.
2 pictures below can not stitching in 1 direction (the postion of the nose and eyes are not in the same column and rows)
Thanks in advance.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/307451/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/307455/image.png)
0 comentarios
Respuesta aceptada
Image Analyst
el 2 de Jun. de 2020
Editada: Image Analyst
el 2 de Jun. de 2020
If you don't want to butt the images against each other but there is some overlap that needs to be determined, then you will need to look up "panorama" : https://www.mathworks.com/matlabcentral/answers/?term=tag%3A%22panorama%22
See this Mathworks Link: https://www.mathworks.com/help/vision/examples/feature-based-panoramic-image-stitching.html
and this one: https://www.crisluengo.net/archives/76
Más respuestas (1)
Image Analyst
el 1 de Jun. de 2020
Editada: Image Analyst
el 1 de Jun. de 2020
To stitch images:
wideImage = [image1, image2]; % Must have same number of rows.
tallImage = [image1; image2]; % Must have same number of columns.
For a more general solution, see https://www.mathworks.com/matlabcentral/fileexchange/25797-stitch
2 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!