Using @dusty_nv 's amazing toolkit.
Either I’m an idiot or i’m missing something, jetson-utils glDisplay has calls for RenderOnce, and other things for RenderRect, RenderOutline.
However when working in python and trying to call RenderRect I get name ‘RenderRect’ is not defined. What’s buggering me here is that RenderOnce right below it works plenty fine.
Other calls that are not defined are
RenderLine
RenderOutline
RenderRect
SetSize
SetMaximized
IsMaximized
SetStatus
and etc. Any ideas? Thanks!
Hi @mark67, for glDisplay I haven’t written Python bindings for all of the C++ functions, sorry about that. It is also because the videoOutput interface is now used predominantly, which doesn’t expose many of those functions unique to glDisplay.
However, if you want to add a binding, you can do so pretty easily by editing jetson-inference/utils/bindings/PyGL.cpp. For example, this is the binding for glDisplay.RenderOnce() -