mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
efc2046ab5
* LedDevice - Address clang findings * Fix Windows Warnings * Ensure newInput is initialised * Clean-up unused elements for Plaform Capture * Fix initialization problem and spellings * Address clang findings and spelling corrections * LedDevice clean-ups * Cleanups * Align that getLedCount is int * Have "display" as default for Grabbers * Fix config during start-up for missing elements * Framegrabber Clean-up - Remove non supported grabbers from selection, filter valid options * Typo * Framegrabber.json - Fix property numbering * Preselect active Grabbertype * Sort Grabbernames * Align options with selected element * Fix deletion of pointer to incomplete type 'BonjourBrowserWrapper' * Address macOS compile warnings * Have default layout = 1 LED only to avoid errors as in #673 * Address lgtm findings * Address finding that params passed to LedDevice discovery were not considered * Cleanups after merging with latest master * Update Changelog * Address lgtm findings * Fix comment * Test Fix * Fix Python Warning * Handle Dummy Device assignment correctly * Address delete called on non-final 'commandline::Option' that has virtual functions but non-virtual destructor * Correct that QTimer.start accepts only int * Have Release Python GIL & reset threat state chnage downward compatible * Correct format specifier * LedDevice - add assertions * Readonly DB - Fix merge issue * Smoothing - Fix wrong defaults * LedDevice - correct assertion * Show smoothing config set# in debug and related values. * Suppress error on windows, if default file is "/dev/null" * CMAKE - Allow to define QT_BASE_DIR dynamically via environment-variable * Ignore Visual Studio specific files Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
241 lines
6.9 KiB
C++
241 lines
6.9 KiB
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
// Utils includes
|
|
#include <utils/Image.h>
|
|
|
|
// Hyperion includes
|
|
#include <hyperion/LedString.h>
|
|
#include <hyperion/ImageToLedsMap.h>
|
|
#include <utils/Logger.h>
|
|
|
|
// settings
|
|
#include <utils/settings.h>
|
|
|
|
// Black border includes
|
|
#include <blackborder/BlackBorderProcessor.h>
|
|
|
|
class Hyperion;
|
|
|
|
///
|
|
/// 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-transform is applied based on a gamma-correction.
|
|
///
|
|
class ImageProcessor : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
///
|
|
/// Constructs an image-processor for translating an image to led-color values based on the
|
|
/// given led-string specification
|
|
/// @param[in] ledString LedString data
|
|
/// @param[in] hyperion Hyperion instance pointer
|
|
///
|
|
ImageProcessor(const LedString& ledString, Hyperion* hyperion);
|
|
|
|
~ImageProcessor() override;
|
|
|
|
///
|
|
/// Specifies the width and height of 'incoming' 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
|
|
///
|
|
void setSize(unsigned width, unsigned height);
|
|
|
|
///
|
|
/// @brief Update the led string (eg on settings change)
|
|
///
|
|
void setLedString(const LedString& ledString);
|
|
|
|
/// Returns state of black border detector
|
|
bool blackBorderDetectorEnabled() const;
|
|
|
|
/// Returns the current _userMappingType, this may not be the current applied type!
|
|
int getUserLedMappingType() const { return _userMappingType; }
|
|
|
|
/// Returns the current _mappingType
|
|
int ledMappingType() const { return _mappingType; }
|
|
|
|
static int mappingTypeToInt(const QString& mappingType);
|
|
static QString mappingTypeToStr(int mappingType);
|
|
|
|
///
|
|
/// @brief Set the Hyperion::update() request LED mapping type. This type is used in favour of type set with setLedMappingType.
|
|
/// If you don't want to force a mapType set this to -1 (user choice will be set)
|
|
/// @param mapType The new mapping type
|
|
///
|
|
void setHardLedMappingType(int mapType);
|
|
|
|
public slots:
|
|
/// Enable or disable the black border detector based on component
|
|
void setBlackbarDetectDisable(bool enable);
|
|
|
|
///
|
|
/// @brief Set the user requested led mapping.
|
|
/// The type set with setHardLedMappingType() will be used in favour to respect comp specific settings
|
|
/// @param mapType The new mapping type
|
|
///
|
|
void setLedMappingType(int mapType);
|
|
|
|
public:
|
|
///
|
|
/// Specifies the width and height of 'incoming' images. This will resize the buffer-image to
|
|
/// match the given size.
|
|
/// NB All earlier obtained references will be invalid.
|
|
///
|
|
/// @param[in] image The dimensions taken from image
|
|
///
|
|
template <typename Pixel_T>
|
|
void setSize(const Image<Pixel_T> &image)
|
|
{
|
|
setSize(image.width(), image.height());
|
|
}
|
|
|
|
///
|
|
/// 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
|
|
///
|
|
template <typename Pixel_T>
|
|
std::vector<ColorRgb> process(const Image<Pixel_T>& image)
|
|
{
|
|
std::vector<ColorRgb> colors;
|
|
if (image.width()>0 && image.height()>0)
|
|
{
|
|
// Ensure that the buffer-image is the proper size
|
|
setSize(image);
|
|
|
|
// Check black border detection
|
|
verifyBorder(image);
|
|
|
|
// Create a result vector and call the 'in place' function
|
|
switch (_mappingType)
|
|
{
|
|
case 1: colors = _imageToLeds->getUniLedColor(image); break;
|
|
default: colors = _imageToLeds->getMeanLedColor(image);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Warning(_log, "ImageProcessor::process called with image size 0");
|
|
}
|
|
|
|
// return the computed colors
|
|
return colors;
|
|
}
|
|
|
|
///
|
|
/// Determines the led colors of the image in the buffer.
|
|
///
|
|
/// @param[in] image The image to translate to led values
|
|
/// @param[out] ledColors The color value per led
|
|
///
|
|
template <typename Pixel_T>
|
|
void process(const Image<Pixel_T>& image, std::vector<ColorRgb>& ledColors)
|
|
{
|
|
if ( image.width()>0 && image.height()>0)
|
|
{
|
|
// Ensure that the buffer-image is the proper size
|
|
setSize(image);
|
|
|
|
// Check black border detection
|
|
verifyBorder(image);
|
|
|
|
// Determine the mean or uni colors of each led (using the existing mapping)
|
|
switch (_mappingType)
|
|
{
|
|
case 1: _imageToLeds->getUniLedColor(image, ledColors); break;
|
|
default: _imageToLeds->getMeanLedColor(image, ledColors);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Warning(_log, "Called with image size 0");
|
|
}
|
|
}
|
|
|
|
///
|
|
/// 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;
|
|
|
|
private:
|
|
///
|
|
/// Performs black-border detection (if enabled) on the given image
|
|
///
|
|
/// @param[in] image The image to perform black-border detection on
|
|
///
|
|
template <typename Pixel_T>
|
|
void verifyBorder(const Image<Pixel_T> & image)
|
|
{
|
|
if (!_borderProcessor->enabled() && ( _imageToLeds->horizontalBorder()!=0 || _imageToLeds->verticalBorder()!=0 ))
|
|
{
|
|
Debug(_log, "Reset border");
|
|
_borderProcessor->process(image);
|
|
delete _imageToLeds;
|
|
_imageToLeds = new hyperion::ImageToLedsMap(image.width(), image.height(), 0, 0, _ledString.leds());
|
|
}
|
|
|
|
if(_borderProcessor->enabled() && _borderProcessor->process(image))
|
|
{
|
|
const hyperion::BlackBorder border = _borderProcessor->getCurrentBorder();
|
|
|
|
// Clean up the old mapping
|
|
delete _imageToLeds;
|
|
|
|
if (border.unknown)
|
|
{
|
|
// Construct a new buffer and mapping
|
|
_imageToLeds = new hyperion::ImageToLedsMap(image.width(), image.height(), 0, 0, _ledString.leds());
|
|
}
|
|
else
|
|
{
|
|
// Construct a new buffer and mapping
|
|
_imageToLeds = new hyperion::ImageToLedsMap(image.width(), image.height(), border.horizontalSize, border.verticalSize, _ledString.leds());
|
|
}
|
|
|
|
//Debug(Logger::getInstance("BLACKBORDER"), "CURRENT BORDER TYPE: unknown=%d hor.size=%d vert.size=%d",
|
|
// border.unknown, border.horizontalSize, border.verticalSize );
|
|
}
|
|
}
|
|
|
|
private slots:
|
|
void handleSettingsUpdate(settings::type type, const QJsonDocument& config);
|
|
|
|
private:
|
|
Logger * _log;
|
|
/// The Led-string specification
|
|
LedString _ledString;
|
|
|
|
/// The processor for black border detection
|
|
hyperion::BlackBorderProcessor * _borderProcessor;
|
|
|
|
/// The mapping of image-pixels to LEDs
|
|
hyperion::ImageToLedsMap* _imageToLeds;
|
|
|
|
/// Type of image 2 led mapping
|
|
int _mappingType;
|
|
/// Type of last requested user type
|
|
int _userMappingType;
|
|
/// Type of last requested hard type
|
|
int _hardMappingType;
|
|
|
|
/// Hyperion instance pointer
|
|
Hyperion* _hyperion;
|
|
};
|