2013-08-13 11:10:45 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
// Jsoncpp includes
|
|
|
|
#include <json/json.h>
|
|
|
|
|
|
|
|
#include <hyperion/LedString.h>
|
|
|
|
|
|
|
|
// Forward class declaration
|
|
|
|
class ImageProcessor;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// The ImageProcessor is a singleton factor for creating ImageProcessors that translate images to
|
|
|
|
/// led color values.
|
|
|
|
///
|
2013-08-13 11:10:45 +02:00
|
|
|
class ImageProcessorFactory
|
|
|
|
{
|
|
|
|
public:
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Returns the 'singleton' instance (creates the singleton if it does not exist)
|
|
|
|
///
|
|
|
|
/// @return The singleton instance of the ImageProcessorFactory
|
|
|
|
///
|
2013-08-13 11:10:45 +02:00
|
|
|
static ImageProcessorFactory& getInstance();
|
|
|
|
|
|
|
|
public:
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Initialises this factory with the given led-configuration
|
|
|
|
///
|
|
|
|
/// @param[in] ledString The led configuration
|
2014-01-20 20:46:38 +01:00
|
|
|
/// @param[in] enableBlackBorderDetector Flag indicating if the blacborder detector should be enabled
|
|
|
|
/// @param[in] blackborderThreshold The threshold which the blackborder detector should use
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2016-02-07 13:26:40 +01:00
|
|
|
void init(const LedString& ledString, const Json::Value &blackborderConfig);
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Creates a new ImageProcessor. The onwership of the processor is transferred to the caller.
|
|
|
|
///
|
|
|
|
/// @return The newly created ImageProcessor
|
|
|
|
///
|
2013-08-13 11:10:45 +02:00
|
|
|
ImageProcessor* newImageProcessor() const;
|
|
|
|
|
|
|
|
private:
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The Led-string specification
|
2013-08-13 11:10:45 +02:00
|
|
|
LedString _ledString;
|
2013-10-20 22:27:05 +02:00
|
|
|
|
2016-02-07 13:26:40 +01:00
|
|
|
// Reference to the blackborder json configuration values
|
|
|
|
Json::Value _blackborderConfig;
|
2013-08-13 11:10:45 +02:00
|
|
|
};
|