2013-08-23 07:08:44 +02:00
|
|
|
|
|
|
|
// Local-Hyperion includes
|
2013-11-11 10:00:37 +01:00
|
|
|
#include <hyperion/BlackBorderProcessor.h>
|
2013-08-21 22:44:17 +02:00
|
|
|
|
2013-08-23 07:08:44 +02:00
|
|
|
using namespace hyperion;
|
|
|
|
|
|
|
|
BlackBorderProcessor::BlackBorderProcessor(
|
|
|
|
const unsigned unknownFrameCnt,
|
|
|
|
const unsigned borderFrameCnt,
|
|
|
|
const unsigned blurRemoveCnt) :
|
|
|
|
_unknownSwitchCnt(unknownFrameCnt),
|
|
|
|
_borderSwitchCnt(borderFrameCnt),
|
|
|
|
_blurRemoveCnt(blurRemoveCnt),
|
2013-08-21 22:44:17 +02:00
|
|
|
_detector(),
|
2013-10-27 09:25:02 +01:00
|
|
|
_currentBorder({true, -1, -1}),
|
|
|
|
_previousDetectedBorder({true, -1, -1}),
|
2013-08-21 22:44:17 +02:00
|
|
|
_consistentCnt(0)
|
|
|
|
{
|
2013-11-11 10:00:37 +01:00
|
|
|
// empty
|
2013-08-21 22:44:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BlackBorder BlackBorderProcessor::getCurrentBorder() const
|
|
|
|
{
|
|
|
|
return _currentBorder;
|
|
|
|
}
|
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
bool BlackBorderProcessor::updateBorder(const BlackBorder & newDetectedBorder)
|
2013-08-21 22:44:17 +02:00
|
|
|
{
|
2013-10-27 09:25:02 +01:00
|
|
|
// set the consistency counter
|
2013-11-11 10:00:37 +01:00
|
|
|
if (newDetectedBorder == _previousDetectedBorder)
|
2013-08-21 22:44:17 +02:00
|
|
|
{
|
|
|
|
++_consistentCnt;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-11 10:00:37 +01:00
|
|
|
_previousDetectedBorder = newDetectedBorder;
|
2013-08-23 18:24:10 +02:00
|
|
|
_consistentCnt = 0;
|
|
|
|
}
|
|
|
|
|
2013-10-27 09:25:02 +01:00
|
|
|
// check if there is a change
|
2013-11-11 10:00:37 +01:00
|
|
|
if (_currentBorder == newDetectedBorder)
|
2013-08-23 18:24:10 +02:00
|
|
|
{
|
|
|
|
// No change required
|
|
|
|
return false;
|
2013-08-21 22:44:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool borderChanged = false;
|
2013-11-11 10:00:37 +01:00
|
|
|
if (newDetectedBorder.unknown)
|
2013-08-21 22:44:17 +02:00
|
|
|
{
|
2013-10-27 09:25:02 +01:00
|
|
|
// apply the unknown border if we consistently can't determine a border
|
|
|
|
if (_consistentCnt == _unknownSwitchCnt)
|
2013-08-23 18:24:10 +02:00
|
|
|
{
|
2013-11-11 10:00:37 +01:00
|
|
|
_currentBorder = newDetectedBorder;
|
2013-08-23 18:24:10 +02:00
|
|
|
borderChanged = true;
|
|
|
|
}
|
2013-10-27 09:25:02 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// apply the detected border if it has been detected consistently
|
|
|
|
if (_currentBorder.unknown || _consistentCnt == _borderSwitchCnt)
|
2013-08-21 22:44:17 +02:00
|
|
|
{
|
2013-11-11 10:00:37 +01:00
|
|
|
_currentBorder = newDetectedBorder;
|
2013-08-21 22:44:17 +02:00
|
|
|
borderChanged = true;
|
|
|
|
}
|
2013-10-27 09:25:02 +01:00
|
|
|
else
|
2013-08-21 22:44:17 +02:00
|
|
|
{
|
2013-10-27 09:25:02 +01:00
|
|
|
// apply smaller borders immediately
|
2013-11-11 10:00:37 +01:00
|
|
|
if (newDetectedBorder.verticalSize < _currentBorder.verticalSize)
|
2013-10-27 09:25:02 +01:00
|
|
|
{
|
2013-11-11 10:00:37 +01:00
|
|
|
_currentBorder.verticalSize = newDetectedBorder.verticalSize;
|
2013-10-27 09:25:02 +01:00
|
|
|
borderChanged = true;
|
|
|
|
}
|
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
if (newDetectedBorder.horizontalSize < _currentBorder.horizontalSize)
|
2013-10-27 09:25:02 +01:00
|
|
|
{
|
2013-11-11 10:00:37 +01:00
|
|
|
_currentBorder.horizontalSize = newDetectedBorder.horizontalSize;
|
2013-10-27 09:25:02 +01:00
|
|
|
borderChanged = true;
|
|
|
|
}
|
2013-08-21 22:44:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return borderChanged;
|
|
|
|
}
|