mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
12 lines
231 B
C++
12 lines
231 B
C++
|
|
// BlackBorders includes
|
|
#include <blackborder/BlackBorderDetector.h>
|
|
|
|
using namespace hyperion;
|
|
|
|
BlackBorderDetector::BlackBorderDetector(uint8_t blackborderThreshold) :
|
|
_blackborderThreshold(blackborderThreshold)
|
|
{
|
|
// empty
|
|
}
|