How to mosaic two images with out overlapping
    4 ビュー (過去 30 日間)
  
       古いコメントを表示
    
    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)
0 件のコメント
採用された回答
  Image Analyst
      
      
 2013 年 11 月 5 日
        To stitch images together:
c = [a,b]; % horizontally
or
c = [a;b]; % vertically.
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

