|
JeVois
1.23
JeVois Smart Embedded Machine Vision Toolkit
|
|
#include <jevois/Core/VideoDisplayGUI.H>
Video output to local screen with basic GUI.
This class provides accelerated OpenGL-ES display on JeVois-Pro, using Dear-ImGui for a simple graphical interface.
Definition at line 36 of file VideoDisplayGUI.H.


Public Member Functions | |
| VideoDisplayGUI (std::shared_ptr< GUIhelper > helper, size_t nbufs=2) | |
| Constructor. | |
| virtual | ~VideoDisplayGUI () |
| Virtual destructor for safe inheritance. | |
| virtual void | setFormat (VideoMapping const &m) override |
| Set the video format and frame rate, allocate the buffers. | |
| virtual void | get (RawImage &img) override |
| Get a pre-allocated image so that we can fill the pixel data and later send out using send() | |
| virtual void | send (RawImage const &img) override |
| Send an image out to display. | |
| virtual void | streamOn () override |
| Start streaming. | |
| virtual void | abortStream () override |
| Abort streaming. | |
| virtual void | streamOff () override |
| Stop streaming. | |
Public Member Functions inherited from jevois::VideoOutput | |
| virtual | ~VideoOutput () |
| Virtual destructor for safe inheritance. | |
| jevois::VideoDisplayGUI::VideoDisplayGUI | ( | std::shared_ptr< GUIhelper > | helper, |
| size_t | nbufs = 2 |
||
| ) |
Constructor.
Definition at line 27 of file VideoDisplayGUI.C.
|
virtual |
Virtual destructor for safe inheritance.
Definition at line 65 of file VideoDisplayGUI.C.
References LERROR.
|
overridevirtual |
Abort streaming.
This only cancels future get() and done() calls, one should still call streamOff() to turn off streaming.
Implements jevois::VideoOutput.
Definition at line 116 of file VideoDisplayGUI.C.
|
overridevirtual |
Get a pre-allocated image so that we can fill the pixel data and later send out using send()
Implements jevois::VideoOutput.
Definition at line 78 of file VideoDisplayGUI.C.
References jevois::RawImage::bufindex, LDEBUG, and LFATAL.
|
overridevirtual |
Send an image out to display.
Implements jevois::VideoOutput.
Definition at line 88 of file VideoDisplayGUI.C.
References jevois::RawImage::bufindex, h, LDEBUG, and LFATAL.
|
overridevirtual |
Set the video format and frame rate, allocate the buffers.
Implements jevois::VideoOutput.
Definition at line 34 of file VideoDisplayGUI.C.
References jevois::RawImage::buf, jevois::RawImage::bufindex, jevois::RawImage::fmt, jevois::RawImage::fps, jevois::RawImage::height, LDEBUG, jevois::VideoMapping::ofmt, jevois::VideoMapping::ofps, jevois::VideoMapping::oh, jevois::VideoMapping::osize(), jevois::VideoMapping::ow, and jevois::RawImage::width.
|
overridevirtual |
|
overridevirtual |