Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
I need help, how I use this function to display image in matlab gui separately by double clicking ?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
if true
% code
end
function openSpecificImage(handles)
type = get(gcf,'SelectionType');
switch type
case 'open' % double-click
im = get( gcbo,'cdata' );
imtool(im, [min(im(:)) max(im(:))] )
case 'normal'
%left mouse button action
case 'extend'
% shift & left mouse button action
case 'alt'
% alt & left mouse button action
end
0 commentaires
Réponses (0)
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!