mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
a7110ec64c
Former-commit-id: 95b77dee2869b41bf556e0e374bea3c5e4534e61
35 lines
991 B
C++
35 lines
991 B
C++
|
|
// Hyperion includes
|
|
#include <hyperion/ImageProcessorFactory.h>
|
|
#include <hyperion/ImageProcessor.h>
|
|
|
|
ImageProcessorFactory& ImageProcessorFactory::getInstance()
|
|
{
|
|
static ImageProcessorFactory instance;
|
|
// Return the singleton instance
|
|
return instance;
|
|
}
|
|
|
|
void ImageProcessorFactory::init(const LedString& ledString, bool enableBlackBorderDetector, double blackborderThreshold)
|
|
{
|
|
_ledString = ledString;
|
|
_enableBlackBorderDetector = enableBlackBorderDetector;
|
|
|
|
int threshold = int(std::ceil(blackborderThreshold * 255));
|
|
if (threshold < 0)
|
|
threshold = 0;
|
|
else if (threshold > 255)
|
|
threshold = 255;
|
|
_blackborderThreshold = uint8_t(threshold);
|
|
|
|
if (_enableBlackBorderDetector)
|
|
{
|
|
std::cout << "Black border threshold set to " << blackborderThreshold << " (" << int(_blackborderThreshold) << ")" << std::endl;
|
|
}
|
|
}
|
|
|
|
ImageProcessor* ImageProcessorFactory::newImageProcessor() const
|
|
{
|
|
return new ImageProcessor(_ledString, _enableBlackBorderDetector, _blackborderThreshold);
|
|
}
|