mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
a7110ec64c
Former-commit-id: 95b77dee2869b41bf556e0e374bea3c5e4534e61
12 lines
230 B
C++
12 lines
230 B
C++
|
|
// Local-Hyperion includes
|
|
#include <hyperion/BlackBorderDetector.h>
|
|
|
|
using namespace hyperion;
|
|
|
|
BlackBorderDetector::BlackBorderDetector(uint8_t blackborderThreshold) :
|
|
_blackborderThreshold(blackborderThreshold)
|
|
{
|
|
// empty
|
|
}
|