Commit b721e098 authored by Davis King's avatar Davis King

Increased the default max detections per template from 2000 to 10000 since

setting this value too low can sometimes result in the failure of the
structural_svm_object_detection_problem.
parent fc84798b
......@@ -180,7 +180,7 @@ namespace dlib
scan_image_pyramid<Pyramid_type,Feature_extractor_type>::
scan_image_pyramid (
) :
max_dets_per_template(2000),
max_dets_per_template(10000),
max_pyramid_levels(1000)
{
}
......
......@@ -33,7 +33,7 @@ namespace dlib
INITIAL VALUE
- get_num_detection_templates() == 0
- is_loaded_with_image() == false
- get_max_detections_per_template() == 2000
- get_max_detections_per_template() == 10000
- get_max_pyramid_levels() == 1000
WHAT THIS OBJECT REPRESENTS
......
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