2013-08-13 11:10:45 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-12-19 23:59:50 +01:00
|
|
|
#include <QString>
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
// Utils includes
|
2013-11-11 10:00:37 +01:00
|
|
|
#include <utils/Image.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-08-23 07:09:09 +02:00
|
|
|
// Hyperion includes
|
2013-08-13 11:10:45 +02:00
|
|
|
#include <hyperion/ImageProcessorFactory.h>
|
2013-08-23 07:09:09 +02:00
|
|
|
#include <hyperion/LedString.h>
|
2013-11-11 10:00:37 +01:00
|
|
|
#include <hyperion/ImageToLedsMap.h>
|
2016-07-12 15:13:06 +02:00
|
|
|
#include <utils/Logger.h>
|
2014-01-26 14:23:08 +01:00
|
|
|
|
|
|
|
// Black border includes
|
|
|
|
#include <blackborder/BlackBorderProcessor.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// The ImageProcessor translates an RGB-image to RGB-values for the leds. The processing is
|
|
|
|
/// performed in two steps. First the average color per led-region is computed. Second a
|
|
|
|
/// color-tranform is applied based on a gamma-correction.
|
|
|
|
///
|
2016-12-19 23:59:50 +01:00
|
|
|
class ImageProcessor : public QObject
|
2013-08-13 11:10:45 +02:00
|
|
|
{
|
2016-12-19 23:59:50 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
public:
|
2016-12-19 23:59:50 +01:00
|
|
|
|
2013-08-13 12:03:00 +02:00
|
|
|
~ImageProcessor();
|
|
|
|
|
2013-11-28 14:38:07 +01:00
|
|
|
///
|
|
|
|
/// Returns the number of attached leds
|
|
|
|
///
|
|
|
|
unsigned getLedCount() const;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Specifies the width and height of 'incomming' images. This will resize the buffer-image to
|
|
|
|
/// match the given size.
|
|
|
|
/// NB All earlier obtained references will be invalid.
|
|
|
|
///
|
|
|
|
/// @param[in] width The new width of the buffer-image
|
|
|
|
/// @param[in] height The new height of the buffer-image
|
|
|
|
///
|
2013-08-13 11:10:45 +02:00
|
|
|
void setSize(const unsigned width, const unsigned height);
|
|
|
|
|
2014-04-30 22:53:05 +02:00
|
|
|
|
2016-08-11 07:13:55 +02:00
|
|
|
/// Returns starte of black border detector
|
|
|
|
bool blackBorderDetectorEnabled();
|
|
|
|
|
2016-12-19 23:59:50 +01:00
|
|
|
/// Returns starte of black border detector
|
|
|
|
int ledMappingType();
|
|
|
|
|
|
|
|
static int mappingTypeToInt(QString mappingType);
|
2016-12-20 19:55:54 +01:00
|
|
|
static QString mappingTypeToStr(int mappingType);
|
2016-12-19 23:59:50 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
/// Enable or disable the black border detector
|
|
|
|
void enableBlackBorderDetector(bool enable);
|
|
|
|
|
|
|
|
/// Enable or disable the black border detector
|
|
|
|
void setLedMappingType(int mapType);
|
|
|
|
|
|
|
|
public:
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Processes the image to a list of led colors. This will update the size of the buffer-image
|
|
|
|
/// if required and call the image-to-leds mapping to determine the mean color per led.
|
|
|
|
///
|
|
|
|
/// @param[in] image The image to translate to led values
|
|
|
|
///
|
|
|
|
/// @return The color value per led
|
|
|
|
///
|
2013-11-11 10:00:37 +01:00
|
|
|
template <typename Pixel_T>
|
|
|
|
std::vector<ColorRgb> process(const Image<Pixel_T>& image)
|
|
|
|
{
|
|
|
|
// Ensure that the buffer-image is the proper size
|
|
|
|
setSize(image.width(), image.height());
|
|
|
|
|
|
|
|
// Check black border detection
|
|
|
|
verifyBorder(image);
|
|
|
|
|
|
|
|
// Create a result vector and call the 'in place' functionl
|
2016-12-19 23:59:50 +01:00
|
|
|
std::vector<ColorRgb> colors;
|
|
|
|
switch (_mappingType)
|
|
|
|
{
|
|
|
|
case 1: colors = _imageToLeds->getUniLedColor(image); break;
|
|
|
|
default: colors = _imageToLeds->getMeanLedColor(image);
|
|
|
|
}
|
2013-11-11 10:00:37 +01:00
|
|
|
|
|
|
|
// return the computed colors
|
|
|
|
return colors;
|
|
|
|
}
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Determines the led colors of the image in the buffer.
|
|
|
|
///
|
2013-09-09 22:35:28 +02:00
|
|
|
/// @param[in] image The image to translate to led values
|
2013-09-06 21:26:58 +02:00
|
|
|
/// @param[out] ledColors The color value per led
|
|
|
|
///
|
2013-11-11 10:00:37 +01:00
|
|
|
template <typename Pixel_T>
|
|
|
|
void process(const Image<Pixel_T>& image, std::vector<ColorRgb>& ledColors)
|
|
|
|
{
|
|
|
|
// Ensure that the buffer-image is the proper size
|
|
|
|
setSize(image.width(), image.height());
|
|
|
|
|
|
|
|
// Check black border detection
|
|
|
|
verifyBorder(image);
|
|
|
|
|
|
|
|
// Determine the mean-colors of each led (using the existing mapping)
|
2016-12-19 23:59:50 +01:00
|
|
|
switch (_mappingType)
|
|
|
|
{
|
|
|
|
case 1: _imageToLeds->getUniLedColor(image, ledColors); break;
|
|
|
|
default: _imageToLeds->getMeanLedColor(image, ledColors);
|
|
|
|
}
|
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
}
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-11-08 22:18:10 +01:00
|
|
|
///
|
|
|
|
/// Get the hscan and vscan parameters for a single led
|
|
|
|
///
|
|
|
|
/// @param[in] led Index of the led
|
|
|
|
/// @param[out] hscanBegin begin of the hscan
|
|
|
|
/// @param[out] hscanEnd end of the hscan
|
|
|
|
/// @param[out] vscanBegin begin of the hscan
|
|
|
|
/// @param[out] vscanEnd end of the hscan
|
|
|
|
/// @return true if the parameters could be retrieved
|
|
|
|
bool getScanParameters(size_t led, double & hscanBegin, double & hscanEnd, double & vscanBegin, double & vscanEnd) const;
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
private:
|
2013-09-06 21:26:58 +02:00
|
|
|
/// Friend declaration of the factory for creating ImageProcessor's
|
2013-08-13 11:10:45 +02:00
|
|
|
friend class ImageProcessorFactory;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Constructs an image-processor for translating an image to led-color values based on the
|
|
|
|
/// given led-string specification
|
|
|
|
///
|
|
|
|
/// @param[in] ledString The led-string specification
|
2014-01-20 20:46:38 +01:00
|
|
|
/// @param[in] blackborderThreshold The threshold which the blackborder detector should use
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2016-09-25 21:59:31 +02:00
|
|
|
ImageProcessor(const LedString &ledString, const QJsonObject &blackborderConfig);
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Performs black-border detection (if enabled) on the given image
|
|
|
|
///
|
|
|
|
/// @param[in] image The image to perform black-border detection on
|
|
|
|
///
|
2013-11-11 10:00:37 +01:00
|
|
|
template <typename Pixel_T>
|
|
|
|
void verifyBorder(const Image<Pixel_T> & image)
|
|
|
|
{
|
2016-09-08 16:32:42 +02:00
|
|
|
if (!_borderProcessor->enabled() && ( _imageToLeds->horizontalBorder()!=0 || _imageToLeds->verticalBorder()!=0 ))
|
|
|
|
{
|
|
|
|
Debug(Logger::getInstance("BLACKBORDER"), "disabled, reset border");
|
|
|
|
_borderProcessor->process(image);
|
|
|
|
delete _imageToLeds;
|
|
|
|
_imageToLeds = new hyperion::ImageToLedsMap(image.width(), image.height(), 0, 0, _ledString.leds());
|
|
|
|
}
|
|
|
|
|
2016-07-15 10:28:12 +02:00
|
|
|
if(_borderProcessor->enabled() && _borderProcessor->process(image))
|
2013-11-11 10:00:37 +01:00
|
|
|
{
|
2016-07-12 15:13:06 +02:00
|
|
|
Debug(Logger::getInstance("BLACKBORDER"), "BORDER SWITCH REQUIRED!!");
|
2013-11-11 10:00:37 +01:00
|
|
|
|
|
|
|
const hyperion::BlackBorder border = _borderProcessor->getCurrentBorder();
|
|
|
|
|
|
|
|
// Clean up the old mapping
|
2014-01-20 20:46:38 +01:00
|
|
|
delete _imageToLeds;
|
2013-11-11 10:00:37 +01:00
|
|
|
|
|
|
|
if (border.unknown)
|
|
|
|
{
|
|
|
|
// Construct a new buffer and mapping
|
2014-01-20 20:46:38 +01:00
|
|
|
_imageToLeds = new hyperion::ImageToLedsMap(image.width(), image.height(), 0, 0, _ledString.leds());
|
2013-11-11 10:00:37 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Construct a new buffer and mapping
|
2014-01-20 20:46:38 +01:00
|
|
|
_imageToLeds = new hyperion::ImageToLedsMap(image.width(), image.height(), border.horizontalSize, border.verticalSize, _ledString.leds());
|
2013-11-11 10:00:37 +01:00
|
|
|
}
|
|
|
|
|
2016-07-12 15:13:06 +02:00
|
|
|
Debug(Logger::getInstance("BLACKBORDER"), "CURRENT BORDER TYPE: unknown=%d hor.size=%d vert.size=%d",
|
|
|
|
border.unknown, border.horizontalSize, border.verticalSize );
|
2013-11-11 10:00:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
private:
|
2016-12-19 23:59:50 +01:00
|
|
|
Logger * _log;
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The Led-string specification
|
2014-01-20 20:46:38 +01:00
|
|
|
const LedString _ledString;
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-08-23 07:09:09 +02:00
|
|
|
/// The processor for black border detection
|
2013-11-11 10:00:37 +01:00
|
|
|
hyperion::BlackBorderProcessor * _borderProcessor;
|
2013-08-23 07:09:09 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The mapping of image-pixels to leds
|
2014-01-20 20:46:38 +01:00
|
|
|
hyperion::ImageToLedsMap* _imageToLeds;
|
2016-12-19 23:59:50 +01:00
|
|
|
|
|
|
|
/// Type of image 2 led mapping
|
|
|
|
int _mappingType;
|
2013-08-13 11:10:45 +02:00
|
|
|
};
|