Effacer les filtres
Effacer les filtres

How to combine images (just overlap all paixels)

1 vue (au cours des 30 derniers jours)
sgb
sgb le 21 Avr 2013
I need to overlap 4 images to yield a final single image to find the image edge.
I have only binary images. Do we have any built in functions for it?
Please help me find out the correct method.

Réponse acceptée

Image Analyst
Image Analyst le 21 Avr 2013
Modifié(e) : Image Analyst le 21 Avr 2013
Yes, you can use imshowpair(), or imfuse() - functions included in the Image Processing Toolbox.
Or, you can simply AND or OR the binary images together:
unionBlobs = bw1 | bw2 | bw3 | bw4;
intersectionBlobs = bw1 & bw2 & bw3 & bw4;
  2 commentaires
sgb
sgb le 22 Avr 2013
Modifié(e) : sgb le 22 Avr 2013
Yes i got it Thank you
But can you please solve another doubt for me which is how can we EX-OR the images
Image Analyst
Image Analyst le 22 Avr 2013
From the help:
xor
Logical exclusive-OR
Syntax
C = xor(A, B)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox 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