mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-21 06:11:09 +08:00
Fixing whitespaces #2
This commit is contained in:
@@ -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
|
|||||||
namespace tld
|
namespace tld
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class TrackerTLDModel : public TrackerModel
|
class TrackerTLDModel : public TrackerModel
|
||||||
@@ -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
|
|||||||
/*
|
/*
|
||||||
* 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(){
|
|||||||
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 ¶meters):
|
TrackerSamplerPF::TrackerSamplerPF(const Mat& chosenRect,const TrackerSamplerPF::Params ¶meters):
|
||||||
params( parameters ),_function(new TrackingFunctionPF(chosenRect)){
|
params( parameters ),_function(new TrackingFunctionPF(chosenRect)){
|
||||||
|
Reference in New Issue
Block a user