2017-08-04 23:08:15 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <cstdint>
|
|
|
|
|
2017-08-12 07:55:32 +02:00
|
|
|
#include <utils/ColorRgb.h>
|
2017-08-04 23:08:15 +02:00
|
|
|
#include <utils/Image.h>
|
|
|
|
#include <utils/VideoMode.h>
|
2018-12-27 23:11:32 +01:00
|
|
|
#include <grabber/VideoStandard.h>
|
2017-08-04 23:08:15 +02:00
|
|
|
#include <utils/ImageResampler.h>
|
|
|
|
#include <utils/Logger.h>
|
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief The Grabber class is responsible to apply image resizes (with or without ImageResampler)
|
|
|
|
/// Overwrite the videoMode with setVideoMode()
|
|
|
|
/// Overwrite setCropping()
|
2017-08-04 23:08:15 +02:00
|
|
|
class Grabber : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
Grabber(QString grabberName, int width=0, int height=0, int cropLeft=0, int cropRight=0, int cropTop=0, int cropBottom=0);
|
2017-08-12 07:55:32 +02:00
|
|
|
virtual ~Grabber();
|
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
///
|
|
|
|
/// Set the video mode (2D/3D)
|
|
|
|
/// @param[in] mode The new video mode
|
|
|
|
///
|
2017-08-12 07:55:32 +02:00
|
|
|
virtual void setVideoMode(VideoMode mode);
|
2017-08-04 23:08:15 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief Apply new crop values, on errors reject the values
|
|
|
|
///
|
2017-08-12 07:55:32 +02:00
|
|
|
virtual void setCropping(unsigned cropLeft, unsigned cropRight, unsigned cropTop, unsigned cropBottom);
|
2017-11-22 00:52:55 +01:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief Apply new width/height values, on errors (collide with cropping) reject the values
|
2019-01-07 18:13:49 +01:00
|
|
|
/// @return True on success else false
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
2018-12-28 18:12:45 +01:00
|
|
|
virtual bool setWidthHeight(int width, int height);
|
2018-12-27 23:11:32 +01:00
|
|
|
|
|
|
|
///
|
2019-01-06 19:49:56 +01:00
|
|
|
/// @brief Apply new pixelDecimation (used from x11 and qt)
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
virtual void setPixelDecimation(int pixelDecimation) {};
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Apply new signalThreshold (used from v4l)
|
|
|
|
///
|
|
|
|
virtual void setSignalThreshold(
|
|
|
|
double redSignalThreshold,
|
|
|
|
double greenSignalThreshold,
|
|
|
|
double blueSignalThreshold,
|
|
|
|
int noSignalCounterThreshold = 50) {};
|
|
|
|
///
|
|
|
|
/// @brief Apply new SignalDetectionOffset (used from v4l)
|
|
|
|
///
|
|
|
|
virtual void setSignalDetectionOffset(
|
|
|
|
double verticalMin,
|
|
|
|
double horizontalMin,
|
|
|
|
double verticalMax,
|
|
|
|
double horizontalMax) {};
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Apply SignalDetectionEnable (used from v4l)
|
|
|
|
///
|
|
|
|
virtual void setSignalDetectionEnable(bool enable) {};
|
|
|
|
|
|
|
|
///
|
2018-12-28 18:12:45 +01:00
|
|
|
/// @brief Apply device and videoStanded (used from v4l)
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
2018-12-28 18:12:45 +01:00
|
|
|
virtual void setDeviceVideoStandard(QString device, VideoStandard videoStandard) {};
|
2018-12-27 23:11:32 +01:00
|
|
|
|
|
|
|
///
|
2019-01-06 19:49:56 +01:00
|
|
|
/// @brief Apply display index (used from qt)
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
virtual void setDisplayIndex(int index) {};
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Apply path for device (used from framebuffer)
|
|
|
|
///
|
|
|
|
virtual void setDevicePath(const QString& path) {};
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief get current resulting height of image (after crop)
|
|
|
|
///
|
2017-08-12 07:55:32 +02:00
|
|
|
virtual const int getImageWidth() { return _width; };
|
2017-08-04 23:08:15 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief get current resulting width of image (after crop)
|
|
|
|
///
|
2017-08-12 07:55:32 +02:00
|
|
|
virtual const int getImageHeight() { return _height; };
|
2017-08-04 23:08:15 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief Prevent the real capture implementation from capturing if disabled
|
|
|
|
///
|
2017-09-01 08:50:37 +02:00
|
|
|
void setEnabled(bool enable);
|
2017-08-04 23:08:15 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
ImageResampler _imageResampler;
|
|
|
|
|
2017-08-12 07:55:32 +02:00
|
|
|
bool _useImageResampler;
|
2017-11-22 00:52:55 +01:00
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
/// the selected VideoMode
|
|
|
|
VideoMode _videoMode;
|
|
|
|
|
|
|
|
/// With of the captured snapshot [pixels]
|
|
|
|
int _width;
|
2017-11-22 00:52:55 +01:00
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
/// Height of the captured snapshot [pixels]
|
|
|
|
int _height;
|
|
|
|
|
|
|
|
// number of pixels to crop after capturing
|
|
|
|
int _cropLeft, _cropRight, _cropTop, _cropBottom;
|
|
|
|
|
2017-09-01 08:50:37 +02:00
|
|
|
bool _enabled;
|
2017-08-04 23:08:15 +02:00
|
|
|
|
|
|
|
/// logger instance
|
|
|
|
Logger * _log;
|
|
|
|
|
|
|
|
};
|