mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2b703de669
Former-commit-id: edfc3e7ccf7b7d727e73a8563acb521045026d5b
27 lines
672 B
C++
27 lines
672 B
C++
#include <iostream>
|
|
// BlackBorders includes
|
|
#include <blackborder/BlackBorderDetector.h>
|
|
|
|
using namespace hyperion;
|
|
|
|
BlackBorderDetector::BlackBorderDetector(double threshold) :
|
|
_blackborderThreshold(calculateThreshold(threshold))
|
|
{
|
|
// empty
|
|
}
|
|
|
|
uint8_t BlackBorderDetector::calculateThreshold(double threshold)
|
|
{
|
|
int rgbThreshold = int(std::ceil(threshold * 255));
|
|
if (rgbThreshold < 0)
|
|
rgbThreshold = 0;
|
|
else if (rgbThreshold > 255)
|
|
rgbThreshold = 255;
|
|
|
|
uint8_t blackborderThreshold = uint8_t(rgbThreshold);
|
|
|
|
std::cout << "Black border threshold set to " << threshold << " (" << int(blackborderThreshold) << ")" << std::endl;
|
|
|
|
return blackborderThreshold;
|
|
}
|