Effacer les filtres
Effacer les filtres

How can I change the figure in which I'm drawing with imfreehand?

1 vue (au cours des 30 derniers jours)
Antonio
Antonio le 10 Juil 2013
I segment an image after specifying some segmentation seeds via imfreehand, then I get the segmented image on a new figure and I want to redraw some seeds on this new figure. How can I make the new calls to imfreehand be directed to the new figure and not the previous one?

Réponse acceptée

Antonio
Antonio le 10 Juil 2013
I used this:
figure('name', 'image to segment'), imshow(imdata,[]);
h = gcf
%...
%do segmentation
figure(h), imshow(segmented_foreground, []);

Plus de réponses (2)

Jan
Jan le 10 Juil 2013
The documentation of imfreehand reveals, that the handle of axes to operate in can be specified as first input.
  1 commentaire
Antonio
Antonio le 10 Juil 2013
The documentation is insufficient for me. It doesn't specify how one gets the hparent that points to a figure.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 10 Juil 2013
Let's say that you're using GUIDE and you have two "axes" controls on your GUI called axes1 and axes2 - this means that the "tag" property for those controls is axes1 and axes2. Then before you call imfreehand, simply call axes to switch focus (switch the gca which is the current axes):
axes(handles.axes2);
handleToDrawing = imfreehand();
Or pass it in
handleToDrawing = imfreehand(handles.axes2);
  2 commentaires
Antonio
Antonio le 10 Juil 2013
I'm not using GUIDE.
Image Analyst
Image Analyst le 10 Juil 2013
Replace handles.axes2 with whatever the handle to your axes is - the one you got from uicontrol() when you called that.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Migrate GUIDE Apps 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