1
0
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:
Vladimir
2015-06-26 10:58:53 +09:00
parent ecc71c324b
commit e8353d923c
4 changed files with 4 additions and 7 deletions

View File

@@ -24,7 +24,6 @@ namespace cv{
Mat_<double> HShist, Vhist;
};
TrackingHistogram _origHist;
const TrackingFunctionPF & operator = (const TrackingFunctionPF &);
};

View File

@@ -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;
};
}

View File

@@ -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
*
*

View File

@@ -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 &parameters):
params( parameters ),_function(new TrackingFunctionPF(chosenRect)){