Stitching image in 2 direction
이전 댓글 표시
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.


채택된 답변
추가 답변 (1개)
Image Analyst
2020년 6월 1일
편집: Image Analyst
2020년 6월 1일
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
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


