Info

This question is closed. Reopen it to edit or answer.

I need help, how I use this function to display image in matlab gui separately by double clicking ?

1 view (last 30 days)
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

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!