matlab - impixelinfo with value transformation -
i want display image , allow mouse on show pixel values- in impixelinfo function.
thing is- show image on inverse scale (1./image) want shown values original ones.
there way it?
a possible workaround - puts original image on top transparent layer, leaving visible image (1./image) user , invisible image impixelinfo takes data from.
imshow(1./image); hold on h = imshow(image); set(h, 'alphadata', zeros(size(image))); impixelinfo
Comments
Post a Comment