필터 지우기
필터 지우기

How to mosaic two images with out overlapping

조회 수: 3 (최근 30일)
mahesh chathuranga
mahesh chathuranga 2013년 11월 5일
편집: mahesh chathuranga 2013년 11월 5일
I have a two images like this.as a example a=[1 1 1 1;1 1 1 1;1 1 1 1;1 1 1 1]; b=[0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0]; (actual images are 256*256) I want to obtain image c=[1 1 1 1 0 0 0 0;1 1 1 1 0 0 0 0;1 1 1 1 0 0 0 0;1 1 1 1 0 0 0 0]; how can i do this?( i want to do this with out damaging the original pixel values)

채택된 답변

Image Analyst
Image Analyst 2013년 11월 5일
To stitch images together:
c = [a,b]; % horizontally
or
c = [a;b]; % vertically.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by