mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +08:00
Merge pull request #3869 from Dikay900:remove_unused_variable
This commit is contained in:
commit
246b7abe7e
@ -618,8 +618,7 @@ Ptr<FeatureEvaluator> HaarEvaluator::clone() const
|
||||
void HaarEvaluator::computeChannels(int scaleIdx, InputArray img)
|
||||
{
|
||||
const ScaleData& s = scaleData->at(scaleIdx);
|
||||
tofs = (int)sbufSize.area();
|
||||
sqofs = hasTiltedFeatures ? tofs*2 : tofs;
|
||||
sqofs = hasTiltedFeatures ? sbufSize.area() * 2 : sbufSize.area();
|
||||
|
||||
if (img.isUMat())
|
||||
{
|
||||
@ -660,6 +659,9 @@ void HaarEvaluator::computeChannels(int scaleIdx, InputArray img)
|
||||
|
||||
void HaarEvaluator::computeOptFeatures()
|
||||
{
|
||||
if (hasTiltedFeatures)
|
||||
tofs = sbufSize.area();
|
||||
|
||||
int sstep = sbufSize.width;
|
||||
CV_SUM_OFS( nofs[0], nofs[1], nofs[2], nofs[3], 0, normrect, sstep );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user