Commit 52a45ed1 authored by cuda-geek's avatar cuda-geek Committed by OpenCV Buildbot

Merge pull request #606 from cuda-geek:fix-depth-less-2-bug-in-soft-cascade

parents 1c3cde11 516a6cc5
......@@ -117,7 +117,7 @@ BoostedSoftCascadeOctave::BoostedSoftCascadeOctave(cv::Rect bb, int np, int nn,
_params.truncate_pruned_tree = false;
_params.use_surrogates = false;
_params.use_1se_rule = false;
_params.regression_accuracy = 1.0e-6f;
_params.regression_accuracy = 0;
// boost params
_params.boost_type = CvBoost::GENTLE;
......@@ -125,7 +125,7 @@ BoostedSoftCascadeOctave::BoostedSoftCascadeOctave(cv::Rect bb, int np, int nn,
_params.weight_trim_rate = 0.95;
// simple defaults
_params.min_sample_count = 2;
_params.min_sample_count = 0;
_params.weak_count = 1;
}
......
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