How to display two images into one figure without blocking each other?

2 vues (au cours des 30 derniers jours)
Veronika
Veronika le 23 Avr 2017
Commenté : Veronika le 24 Avr 2017
Dear all,
I have two images in jpg format. I would like to these two images display in one figure lay on each other and without blocking each other. Is it possible?
I attach these two images. Thank you for your answers.

Réponses (1)

Image Analyst
Image Analyst le 23 Avr 2017
Yes, just stitch them together
wideImage = [image1, image2]; % Have the same number of rows.
or else use imfuse() or imshowpair(). Or put them into separate axes.
  5 commentaires
Image Analyst
Image Analyst le 24 Avr 2017
Try
ax = gca; % Get handle to current/last used axes control.
ax.YDir = 'reverse'; % Flip it top to bottom.
Veronika
Veronika le 24 Avr 2017
Thank you for your answer, I already figured out different way.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing and Computer Vision 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