mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
cleanup
Former-commit-id: 39cb3f76379990085407791ec391732c986790e6
This commit is contained in:
parent
544ae68429
commit
ac86a779b0
@ -89,18 +89,14 @@ namespace hyperion
|
|||||||
BlackBorderDetector _detector;
|
BlackBorderDetector _detector;
|
||||||
|
|
||||||
/// The current detected border
|
/// The current detected border
|
||||||
BlackBorder _currentBorder1;
|
|
||||||
BlackBorder _currentBorder;
|
BlackBorder _currentBorder;
|
||||||
|
|
||||||
/// The border detected in the previous frame
|
/// The border detected in the previous frame
|
||||||
BlackBorder _previousDetectedBorder1;
|
|
||||||
BlackBorder _previousDetectedBorder;
|
BlackBorder _previousDetectedBorder;
|
||||||
|
|
||||||
/// The number of frame the previous detected border matched the incomming border
|
/// The number of frame the previous detected border matched the incomming border
|
||||||
unsigned _consistentCnt1;
|
|
||||||
unsigned _consistentCnt;
|
unsigned _consistentCnt;
|
||||||
/// The number of frame the previous detected border NOT matched the incomming border
|
/// The number of frame the previous detected border NOT matched the incomming border
|
||||||
unsigned _inconsistentCnt1;
|
|
||||||
unsigned _inconsistentCnt;
|
unsigned _inconsistentCnt;
|
||||||
};
|
};
|
||||||
} // end namespace hyperion
|
} // end namespace hyperion
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <iostream>
|
|
||||||
// Blackborder includes
|
// Blackborder includes
|
||||||
#include <blackborder/BlackBorderProcessor.h>
|
#include <blackborder/BlackBorderProcessor.h>
|
||||||
|
|
||||||
@ -12,13 +12,9 @@ BlackBorderProcessor::BlackBorderProcessor(const unsigned unknownFrameCnt,
|
|||||||
_borderSwitchCnt(borderFrameCnt),
|
_borderSwitchCnt(borderFrameCnt),
|
||||||
_blurRemoveCnt(blurRemoveCnt),
|
_blurRemoveCnt(blurRemoveCnt),
|
||||||
_detector(blackborderThreshold),
|
_detector(blackborderThreshold),
|
||||||
_currentBorder1({true, -1, -1}),
|
|
||||||
_currentBorder({true, -1, -1}),
|
_currentBorder({true, -1, -1}),
|
||||||
_previousDetectedBorder1({true, -1, -1}),
|
|
||||||
_previousDetectedBorder({true, -1, -1}),
|
_previousDetectedBorder({true, -1, -1}),
|
||||||
_consistentCnt1(0),
|
|
||||||
_consistentCnt(0),
|
_consistentCnt(0),
|
||||||
_inconsistentCnt1(0),
|
|
||||||
_inconsistentCnt(0)
|
_inconsistentCnt(0)
|
||||||
{
|
{
|
||||||
// empty
|
// empty
|
||||||
@ -29,87 +25,7 @@ BlackBorder BlackBorderProcessor::getCurrentBorder() const
|
|||||||
return _currentBorder;
|
return _currentBorder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool BlackBorderProcessor::updateBorder(const BlackBorder & newDetectedBorder)
|
bool BlackBorderProcessor::updateBorder(const BlackBorder & newDetectedBorder)
|
||||||
{
|
|
||||||
bool result1 = updateBorder1(newDetectedBorder);
|
|
||||||
if (result1)
|
|
||||||
{
|
|
||||||
std::cout << "border change v1 " << _currentBorder1.horizontalSize << ":" << _currentBorder1.verticalSize << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool result2 = updateBorder2(newDetectedBorder);
|
|
||||||
if (result2)
|
|
||||||
{
|
|
||||||
std::cout << "border change v2 " << _currentBorder.horizontalSize << ":" << _currentBorder.verticalSize << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
return result2;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool BlackBorderProcessor::updateBorder1(const BlackBorder & newDetectedBorder)
|
|
||||||
{
|
|
||||||
// set the consistency counter
|
|
||||||
if (newDetectedBorder == _previousDetectedBorder1)
|
|
||||||
{
|
|
||||||
++_consistentCnt1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_previousDetectedBorder1 = newDetectedBorder;
|
|
||||||
_consistentCnt1 = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// std::cout << "cur: " << _currentBorder1.verticalSize << " " << _currentBorder1.horizontalSize << " new: " << newDetectedBorder.verticalSize << " " << newDetectedBorder.horizontalSize << " c:i " << _consistentCnt1 << ":" << _inconsistentCnt1 << std::endl;
|
|
||||||
|
|
||||||
// check if there is a change
|
|
||||||
if (_currentBorder1 == newDetectedBorder)
|
|
||||||
{
|
|
||||||
// No change required
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool borderChanged = false;
|
|
||||||
if (newDetectedBorder.unknown)
|
|
||||||
{
|
|
||||||
// apply the unknown border if we consistently can't determine a border
|
|
||||||
if (_consistentCnt1 == _unknownSwitchCnt)
|
|
||||||
{
|
|
||||||
_currentBorder1 = newDetectedBorder;
|
|
||||||
borderChanged = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// apply the detected border if it has been detected consistently
|
|
||||||
if (_currentBorder1.unknown || _consistentCnt1 == _borderSwitchCnt)
|
|
||||||
{
|
|
||||||
_currentBorder1 = newDetectedBorder;
|
|
||||||
borderChanged = true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
bool stable = (_consistentCnt >= 10) || (_inconsistentCnt >=30 );
|
|
||||||
// apply smaller borders immediately
|
|
||||||
if ((newDetectedBorder.verticalSize < _currentBorder1.verticalSize) && (stable))
|
|
||||||
{
|
|
||||||
_currentBorder1.verticalSize = newDetectedBorder.verticalSize;
|
|
||||||
borderChanged = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((newDetectedBorder.horizontalSize < _currentBorder1.horizontalSize) && (stable))
|
|
||||||
{
|
|
||||||
_currentBorder1.horizontalSize = newDetectedBorder.horizontalSize;
|
|
||||||
borderChanged = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return borderChanged;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool BlackBorderProcessor::updateBorder2(const BlackBorder & newDetectedBorder)
|
|
||||||
{
|
{
|
||||||
// set the consistency counter
|
// set the consistency counter
|
||||||
if (newDetectedBorder == _previousDetectedBorder)
|
if (newDetectedBorder == _previousDetectedBorder)
|
||||||
@ -124,8 +40,6 @@ bool BlackBorderProcessor::updateBorder2(const BlackBorder & newDetectedBorder)
|
|||||||
++_inconsistentCnt;
|
++_inconsistentCnt;
|
||||||
}
|
}
|
||||||
|
|
||||||
// std::cout << "cur: " << _currentBorder.verticalSize << " " << _currentBorder.horizontalSize << " new: " << newDetectedBorder.verticalSize << " " << newDetectedBorder.horizontalSize << " c:i " << _consistentCnt << ":" << _inconsistentCnt << std::endl;
|
|
||||||
|
|
||||||
// check if there is a change
|
// check if there is a change
|
||||||
if (_currentBorder == newDetectedBorder)
|
if (_currentBorder == newDetectedBorder)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user