Copying a nonvisible figure causes images to have weird coloring?
Show older comments
So, I have this code that showed the figure resultsf (which has 'visible' set to 'off'). I copy it because I do not wish for it to be deleted when the user closes the figure window.
global resultsf;
f = figure('Name', 'Results');
copyobj(allchild(resultsf), f);
set(f, 'visible', 'on');
However, the problem is that when I display resultsf by itself (by setting 'visible' to 'on'), the images (grayscale) in the figure display perfectly. But, when I use the above code, the images will have have a coloring to them.
3 Comments
Sean de Wolski
on 18 Jul 2012
Any chance you should show what generates resultsf (perhaps with a sample image like cameraman.tif')?
Qingyang
on 18 Jul 2012
Qingyang
on 18 Jul 2012
Accepted Answer
More Answers (0)
Categories
Find more on Polygons in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!