I am running dusty-nv inference and it runs great.
How can I make the display to cover the full screen?
I was looking at this forum, do I just need to update the github and
display.SetMaximized(True)
or display.SetFullscreen(True)
in python code? Kind of lost, sorry.
I have git clone the newest github and add the line
display.SetMaximized(True)
or display.SetFullscreen(True)
error of no attribute though… still debugging
Do I need to install/update the jetson-utils?
I follow
I run the full screen example and it works, but not the posenet
I guess the difference is this function
display = jetson.utils.videoOutput(…)
How to solve it? Thx
Hi @AK51, yes you would need to change it over to using jetson.utils.glDisplay() instead of jetson.utils.videoOutput() because those extended functions (such as SetMaximized/SetFullscreen) are only in the glDisplay object. There are some other minor differences as well, but if you take a working script that uses glDisplay then you should be able to add poseNet to it.
Sorry, for the follow up question.
I can make a full screen thx, but if Ubuntu has a crash before (I guess the power is off without proper shutdown), a notification window pops-up (crash report) on top of the full-screen. The notification window will be there even after a proper shutdown.
How can I put this full screen window on top? Or Disable the crash report or update window?
Thx