Commit e8353d92 authored by Vladimir's avatar Vladimir

Fixing whitespaces #2

parent ecc71c32
...@@ -24,7 +24,6 @@ namespace cv{ ...@@ -24,7 +24,6 @@ namespace cv{
Mat_<double> HShist, Vhist; Mat_<double> HShist, Vhist;
}; };
TrackingHistogram _origHist; TrackingHistogram _origHist;
const TrackingFunctionPF & operator = (const TrackingFunctionPF &); const TrackingFunctionPF & operator = (const TrackingFunctionPF &);
}; };
......
...@@ -51,7 +51,6 @@ namespace cv ...@@ -51,7 +51,6 @@ namespace cv
namespace tld namespace tld
{ {
class TrackerTLDModel : public TrackerModel class TrackerTLDModel : public TrackerModel
...@@ -75,14 +74,13 @@ namespace cv ...@@ -75,14 +74,13 @@ namespace cv
protected: protected:
Size minSize_; Size minSize_;
TrackerTLD::Params params_; TrackerTLD::Params params_;
void pushIntoModel(const Mat_<uchar>& example, bool positive); void pushIntoModel(const Mat_<uchar>& example, bool positive);
void modelEstimationImpl(const std::vector<Mat>& /*responses*/){} void modelEstimationImpl(const std::vector<Mat>& /*responses*/){}
void modelUpdateImpl(){} void modelUpdateImpl(){}
Rect2d boundingBox_; Rect2d boundingBox_;
RNG rng; RNG rng;
}; };
} }
......
...@@ -63,7 +63,7 @@ namespace cv ...@@ -63,7 +63,7 @@ namespace cv
/* /*
* TODO: * TODO:
* add "non-detected" answer in algo --> test it with 2 rects --> frame-by-frame debug in TLD --> test it!! * 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 * asessment framework
* *
* *
......
...@@ -385,7 +385,7 @@ TrackerSamplerPF::Params::Params(){ ...@@ -385,7 +385,7 @@ TrackerSamplerPF::Params::Params(){
iterationNum=20; iterationNum=20;
particlesNum=100; particlesNum=100;
alpha=0.9; 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): TrackerSamplerPF::TrackerSamplerPF(const Mat& chosenRect,const TrackerSamplerPF::Params &parameters):
params( parameters ),_function(new TrackingFunctionPF(chosenRect)){ params( parameters ),_function(new TrackingFunctionPF(chosenRect)){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment