mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
Merge pull request #3849 from Dikay900:fix_tilted_features_crash
This commit is contained in:
commit
3c51fdffac
@ -555,6 +555,7 @@ HaarEvaluator::HaarEvaluator()
|
||||
localSize = Size(4, 2);
|
||||
lbufSize = Size(0, 0);
|
||||
nchannels = 0;
|
||||
tofs = 0;
|
||||
}
|
||||
|
||||
HaarEvaluator::~HaarEvaluator()
|
||||
@ -676,6 +677,10 @@ void HaarEvaluator::computeOptFeatures()
|
||||
copyVectorToUMat(*optfeatures_lbuf, ufbuf);
|
||||
}
|
||||
|
||||
bool HaarEvaluator::setImage(InputArray _image, const std::vector<float>& _scales){
|
||||
tofs = 0;
|
||||
return FeatureEvaluator::setImage(_image, _scales);
|
||||
}
|
||||
|
||||
bool HaarEvaluator::setWindow( Point pt, int scaleIdx )
|
||||
{
|
||||
|
@ -347,6 +347,7 @@ public:
|
||||
virtual Ptr<FeatureEvaluator> clone() const;
|
||||
virtual int getFeatureType() const { return FeatureEvaluator::HAAR; }
|
||||
|
||||
virtual bool setImage(InputArray _image, const std::vector<float>& _scales);
|
||||
virtual bool setWindow(Point p, int scaleIdx);
|
||||
Rect getNormRect() const;
|
||||
int getSquaresOffset() const;
|
||||
|
Loading…
Reference in New Issue
Block a user