mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-23 00:49:38 +08:00
Fixing whitespaces #2
This commit is contained in:
@@ -24,7 +24,6 @@ namespace cv{
|
||||
Mat_<double> HShist, Vhist;
|
||||
};
|
||||
TrackingHistogram _origHist;
|
||||
|
||||
const TrackingFunctionPF & operator = (const TrackingFunctionPF &);
|
||||
};
|
||||
|
||||
|
@@ -51,7 +51,6 @@ namespace cv
|
||||
namespace tld
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
class TrackerTLDModel : public TrackerModel
|
||||
@@ -75,14 +74,13 @@ namespace cv
|
||||
|
||||
protected:
|
||||
Size minSize_;
|
||||
|
||||
TrackerTLD::Params params_;
|
||||
void pushIntoModel(const Mat_<uchar>& example, bool positive);
|
||||
void modelEstimationImpl(const std::vector<Mat>& /*responses*/){}
|
||||
void modelUpdateImpl(){}
|
||||
Rect2d boundingBox_;
|
||||
Rect2d boundingBox_;
|
||||
RNG rng;
|
||||
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
@@ -63,7 +63,7 @@ namespace cv
|
||||
/*
|
||||
* TODO:
|
||||
* add "non-detected" answer in algo --> test it with 2 rects --> frame-by-frame debug in TLD --> test it!!
|
||||
* take all parameters out
|
||||
* take all parameters out
|
||||
* asessment framework
|
||||
*
|
||||
*
|
||||
|
@@ -385,7 +385,7 @@ TrackerSamplerPF::Params::Params(){
|
||||
iterationNum=20;
|
||||
particlesNum=100;
|
||||
alpha=0.9;
|
||||
std=(Mat_<double>(1,4)<<15.0,15.0,15.0,15.0);
|
||||
std=(Mat_<double>(1,4)<<15.0,15.0,15.0,15.0);
|
||||
}
|
||||
TrackerSamplerPF::TrackerSamplerPF(const Mat& chosenRect,const TrackerSamplerPF::Params ¶meters):
|
||||
params( parameters ),_function(new TrackingFunctionPF(chosenRect)){
|
||||
|
Reference in New Issue
Block a user