hyperion.ng/include/grabber/V4L2Wrapper.h

45 lines
1.2 KiB
C
Raw Normal View History

#pragma once
#include <hyperion/GrabberWrapper.h>
#include <grabber/V4L2Grabber.h>
class V4L2Wrapper : public GrabberWrapper
{
Q_OBJECT
public:
V4L2Wrapper(const QString & device,
VideoStandard videoStandard,
PixelFormat pixelFormat,
2018-12-27 23:11:32 +01:00
int pixelDecimation );
virtual ~V4L2Wrapper() {};
bool getSignalDetectionEnable();
2019-12-30 22:23:38 +01:00
bool getGrabberFixEnable();
public slots:
bool start();
void stop();
2018-12-27 23:11:32 +01:00
void setSignalThreshold(double redSignalThreshold, double greenSignalThreshold, double blueSignalThreshold);
void setCropping(int cropLeft, int cropRight, int cropTop, int cropBottom);
void setSignalDetectionOffset(double verticalMin, double horizontalMin, double verticalMax, double horizontalMax);
void setSignalDetectionEnable(bool enable);
2019-12-30 22:23:38 +01:00
void setGrabberFixEnable(bool enable);
2019-12-30 22:27:02 +01:00
void setGrabberFixValues(int width, int height, QString vtype);
2019-02-13 09:09:34 +01:00
void setDeviceVideoStandard(QString device, VideoStandard videoStandard);
signals:
void componentStateChanged(const hyperion::Components component, bool enable);
private slots:
void newFrame(const Image<ColorRgb> & image);
void readError(const char* err);
virtual void action();
private:
/// The V4L2 grabber
V4L2Grabber _grabber;
};