Undoing the impixelinfo function
Mostra commenti meno recenti
Hi.
I have alot of matlab figures to which I have added "impixelinfo". How do I remove that so that I can extract the figures as a tiff file without the "Pixel info: (R,G,B)" in the background?
Risposte (1)
Image Analyst
il 8 Mar 2019
Try getting a handle and then deleting it
hPixelInfo = impixelinfo; % Set up a impixelinfo panel.
% Now you can use hPixelInfo and set things like it's location.
% Now get rid of it - turn it off.
delete(hPixelInfo); % Make it go away.
Categorie
Scopri di più su Interactive Model Editing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!