Stitching image in 2 direction
Show older comments
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.


Accepted Answer
More Answers (1)
Image Analyst
on 1 Jun 2020
Edited: Image Analyst
on 1 Jun 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
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

