Effacer les filtres
Effacer les filtres

How to mosaic two images with out overlapping

3 vues (au cours des 30 derniers jours)
mahesh chathuranga
mahesh chathuranga le 5 Nov 2013
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)

Réponse acceptée

Image Analyst
Image Analyst le 5 Nov 2013
To stitch images together:
c = [a,b]; % horizontally
or
c = [a;b]; % vertically.
  1 commentaire
mahesh chathuranga
mahesh chathuranga le 5 Nov 2013
Modifié(e) : mahesh chathuranga le 5 Nov 2013
thank you very much.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by