hyperion.ng
AmlogicWrapper.h
1 #pragma once
2 
3 #include <hyperion/GrabberWrapper.h>
4 #include <grabber/AmlogicGrabber.h>
5 
12 {
13  Q_OBJECT
14 public:
21  AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight);
22 
26  virtual ~AmlogicWrapper() {};
27 
28 public slots:
32  virtual void action();
33 
34 private:
36  AmlogicGrabber _grabber;
37 };
The DispmanxWrapper uses an instance of the DispmanxFrameGrabber to obtain ImageRgb&#39;s from the displa...
Definition: AmlogicWrapper.h:11
virtual ~AmlogicWrapper()
Destructor of this dispmanx frame grabber.
Definition: AmlogicWrapper.h:26
This class will be inherted by FramebufferWrapper and others which contains the real capture interfac...
Definition: GrabberWrapper.h:23
AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight)
Constructs the dispmanx frame grabber with a specified grab size and update rate. ...
Definition: AmlogicWrapper.cpp:3
virtual void action()
Performs a single frame grab and computes the led-colors.
Definition: AmlogicWrapper.cpp:8
Definition: AmlogicGrabber.h:11