Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
psenna committed Jun 3, 2018
1 parent 2f977e1 commit ef62240
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trackers/ASMS/colotracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ cv::Point ColorTracker::histMeanShift(double x1, double y1, double x2, double y2

cv::Point ColorTracker::histMeanShiftIsotropicScale(double x1, double y1, double x2, double y2, double * scale, int * iter, double* similarity)
{
int maxIter = 15;
int maxIter = 10;

double w2 = (x2-x1)/2;
double h2 = (y2-y1)/2;
Expand Down
2 changes: 1 addition & 1 deletion trackers/tasms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tASMS::tASMS(float dist_adj, float conf_adj)
this->dist_adj = dist_adj;
this->conf_adj = conf_adj;
this->feedbackRatio = FEED_RATIO;
this->updateRatio = 0.03;
this->updateRatio = 0.02;
}

void tASMS::init(cv::Mat& image, cv::Rect region){
Expand Down

0 comments on commit ef62240

Please sign in to comment.