Determine if using HG2

7 views (last 30 days)
Oliver Woodford
Oliver Woodford on 21 Jun 2014
Answered: Cris Luengo on 20 Feb 2017
How can I determine if MATLAB or the current figure is using the new graphics pipeline, HG2? I need a function
tf = ishg2(figure_handle)
which should be backwards compatible, say to MATLAB 7.0, and also account for the fact that people can choose which rendering pipeline to use (HG1 or HG2) in newer MATLAB releases, so simply checking version number is not sufficient.
  3 Comments
Robert Berglin
Robert Berglin on 13 Apr 2016
It's so simple you may not want to bother to create a function:
function result = ishg2(figure_handle)
if isnumeric(figure_handle)
result=false;
else
result=true;
end
end
Walter Roberson
Walter Roberson on 23 Apr 2016
figure handles are permitted to be numeric in hg2.

Sign in to comment.

Accepted Answer

Oliver Woodford
Oliver Woodford on 26 Jun 2014
I've ended up using the undocumented function, graphicsversion():
function tf = ishg2(fig)
try
tf = ~graphicsversion(fig, 'handlegraphics');
catch
tf = false;
end
  1 Comment
Oliver Woodford
Oliver Woodford on 16 Jun 2015
graphicsversion is undocumented and may disappear in the future. Cris Luengo's first suggestion might be a better option.

Sign in to comment.

More Answers (5)

Jan
Jan on 31 Jul 2015
Edited: Jan on 29 Feb 2016
A summary of the solutions posted here, which use a figure handle h:
exist('graphicsversion', 'builtin') && ~graphicsversion(h, 'handlegraphics')
isgraphics(h) && isa(h,'handle')
isa(h, 'handle')
~isnumeric(h)
isa(h, 'matlab.ui.Figure')
~graphicsversion(h, 'handlegraphics') % Not documented
get(h, 'usehg2') % Not working in some versions
A version without using a figure handle:
~verLessThan('matlab', '8.4')
[100, 1] * sscanf(version, '%d.', 2) < 804 % 170 times faster than verLessThan method
The function ishg2figure was part of Matlab2006a already, but it is private and not documented.
Many codes depend on the used handle graphics version. Therefore a reliable an efficient identification is required and the corresponding tool should not be determined by a discussion in the forum, but by an officially documented Matlablab function. In addition this function must be available for older Matlab versions also, such that I need a download e.g. in the FileExchange or the knowledge base.

Oliver Woodford
Oliver Woodford on 24 Jun 2014
Edited: Oliver Woodford on 24 Jun 2014
Currently I'm using the version checking approach:
function tf = ishg2()
try
tf = ~verLessThan('matlab', '8.4');
catch
tf = false;
end

Cris Luengo
Cris Luengo on 27 Oct 2014
You can simply check the class of the figure handle:
function tf = ishg2(fig)
tf = isa(h,'matlab.ui.Figure');
or:
function tf = ishg2(fig)
tf = ~isnumeric(fig);
In the second case you are not checking whether the input is a figure handle or not, buyer beware.

Markus Leuthold
Markus Leuthold on 11 Nov 2014
For any handle returned by a plot command,
isa(h,'handle')
returns true if HG2 is used, false otherwise. The command does not check if h is still a valid handle. If you need that, then
isgraphics(h) && isa(h,'handle')
Works on both 2014b and older versions
  1 Comment
Mike Garrity
Mike Garrity on 11 Nov 2014
That version's actually not safe. To help keep old code running in 14b, it's possible to cast a handle to a graphics object into a double.
The following returns false
ax = gca
h = double(ax)
if isgraphics(h) && isa(h,'handle')
disp('is')
else
disp('aint')
end
Similarly there were some tricky cases in earlier versions where you could cast the double value for a graphics object into a handle.
The graphicsversion function is actually the safest way to do this because it knows all of the different combinations.
If you need to run in an old version which didn't have the graphicsversion command, then you can assume that you don't have a new graphics object. So you could either use try/catch as Oliver showed, or do something like this:
exist('graphicsversion','builtin') && ~graphicsversion(h,'handlegraphics')

Sign in to comment.


Cris Luengo
Cris Luengo on 20 Feb 2017
Revisiting this issue.
The best method discussed here is using `graphics` version. However, you currently get a warning when you use it, since it's deprecated. The help to that function suggests you compare the version number to 8.4:
verLessThan('matlab','8.4.0')
Jan Simon suggested this as a faster alternative:
[100, 1] * sscanf(version, '%d.', 2) < 804
However, since it's possible to turn off HG2 in at least some versions of MATLAB, this is not a fool-proof method.
An alternative could be:
try, hg2 = strcmp(get(fig,'GraphicsSmoothing'),'on'); catch, hg2 = false; end
The 'GraphicsSmoothing' is a property that only exists for HG2 figures.
The solution I had given earlier,
~isnumeric(fig)
only works if `fig` has not been converted to double. So you can use it on the result of `figure` or `gcf`, but if you write a function that takes a figure handle as input, and you want your uses to be able to simply type the figure number, then that method fails.

Categories

Find more on Graphics Object Programming 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!