Opening a figure saved in .fig with several plots and working on them separately

4 visualizzazioni (ultimi 30 giorni)
Hi
I have figures saved in .fig with several images on them. I am trying to open them and draw cross sections with improfile on the same pixels for each image and then plot the cross sections. In other words, once we open a figure that contains several subplots with openfig, how can we work on each subplot separately? And treat the different plots (images in my case) as different objects.
Does anyone know how to do that?
The easy way would be to run my simulations again and save the images differently but that's a lot of files to save...

Risposte (1)

Tommy
Tommy il 23 Giu 2020
You could obtain handles to each of the axes within your figure and go from there:
fig = openfig('myfig.fig');
ax_handles = findall(fig, 'Type', 'Axes');
You can then access the image(s) contained within each axes, e.g.:
im1 = findall(ax_handles(1), 'Type', 'Image'); % image(s) within first set of axes

Categorie

Scopri di più su Images in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by