Skip to content
Snippets Groups Projects
Commit 56efa5d3 authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Error in convergence parameter (cast to int).

parent 9fb2fe3d
No related branches found
No related tags found
No related merge requests found
......@@ -479,7 +479,7 @@ private:
//const unsigned int
//minimumObjectSize = static_cast<unsigned int> (this->GetParameterInt("minsize"));
const float
threshold = static_cast<float> (this->GetParameterInt("filter.meanshift.thres"));
threshold = this->GetParameterFloat("filter.meanshift.thres");
const unsigned int
maxIterNumber = static_cast<unsigned int> (this->GetParameterInt("filter.meanshift.maxiter"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment