mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
3ff7fe483f
* small collection of bugfixed debugger hints / warnings * 'toStdVector' has been explicitly marked deprecated * fixed double zip naming in artifacts * V4L2 WebUI Fix * Some code fixes based on alerts from lgtm.com * only execute dynamic v4l2 enum code, if V4L2_AVAIL * very high critical bugfix ;) * merge fix * some lgtm.com fixes * lgtm fixes * undo localtime_r fix Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <hyperion/GrabberWrapper.h>
|
|
#include <grabber/V4L2Grabber.h>
|
|
|
|
class V4L2Wrapper : public GrabberWrapper
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
V4L2Wrapper(const QString & device,
|
|
const unsigned grabWidth,
|
|
const unsigned grabHeight,
|
|
const unsigned fps,
|
|
VideoStandard videoStandard,
|
|
PixelFormat pixelFormat,
|
|
int pixelDecimation );
|
|
virtual ~V4L2Wrapper() {};
|
|
|
|
bool getSignalDetectionEnable();
|
|
|
|
public slots:
|
|
bool start();
|
|
void stop();
|
|
|
|
void setSignalThreshold(double redSignalThreshold, double greenSignalThreshold, double blueSignalThreshold);
|
|
void setCropping(unsigned cropLeft, unsigned cropRight, unsigned cropTop, unsigned cropBottom);
|
|
void setSignalDetectionOffset(double verticalMin, double horizontalMin, double verticalMax, double horizontalMax);
|
|
void setSignalDetectionEnable(bool enable);
|
|
void setDeviceVideoStandard(QString device, VideoStandard videoStandard);
|
|
|
|
signals:
|
|
|
|
private slots:
|
|
void newFrame(const Image<ColorRgb> & image);
|
|
void readError(const char* err);
|
|
|
|
virtual void action();
|
|
|
|
private:
|
|
/// The V4L2 grabber
|
|
V4L2Grabber _grabber;
|
|
};
|