Commit a1a0e782 authored by Davis King's avatar Davis King

Upgraded the object_detector so that you can use the adjust_threshold

argument for all versions of the operator() method.
parent 6133b614
...@@ -52,7 +52,8 @@ namespace dlib ...@@ -52,7 +52,8 @@ namespace dlib
typename image_type typename image_type
> >
std::vector<rectangle> operator() ( std::vector<rectangle> operator() (
const image_type& img const image_type& img,
double adjust_threshold = 0
); );
template < template <
...@@ -250,7 +251,8 @@ namespace dlib ...@@ -250,7 +251,8 @@ namespace dlib
> >
std::vector<rectangle> object_detector<image_scanner_type>:: std::vector<rectangle> object_detector<image_scanner_type>::
operator() ( operator() (
const image_type& img const image_type& img,
double adjust_threshold
) )
{ {
std::vector<rectangle> final_dets; std::vector<rectangle> final_dets;
...@@ -260,7 +262,7 @@ namespace dlib ...@@ -260,7 +262,7 @@ namespace dlib
const double thresh = w(scanner.get_num_dimensions()); const double thresh = w(scanner.get_num_dimensions());
scanner.load(img); scanner.load(img);
scanner.detect(w, dets, thresh); scanner.detect(w, dets, thresh + adjust_threshold);
for (unsigned long i = 0; i < dets.size(); ++i) for (unsigned long i = 0; i < dets.size(); ++i)
{ {
......
...@@ -116,7 +116,8 @@ namespace dlib ...@@ -116,7 +116,8 @@ namespace dlib
typename image_type typename image_type
> >
std::vector<rectangle> operator() ( std::vector<rectangle> operator() (
const image_type& img const image_type& img,
const adjust_threshold = 0
); );
/*! /*!
requires requires
...@@ -131,6 +132,11 @@ namespace dlib ...@@ -131,6 +132,11 @@ namespace dlib
#get_scanner().get_feature_vector() to obtain the feature vectors or #get_scanner().get_feature_vector() to obtain the feature vectors or
#get_scanner().get_full_object_detection() to get the #get_scanner().get_full_object_detection() to get the
full_object_detections for the resulting object detection boxes. full_object_detections for the resulting object detection boxes.
- The detection threshold is adjusted by having adjust_threshold added to
it. Therefore, an adjust_threshold value > 0 makes detecting objects
harder while a negative value makes it easier. This means that, for
example, you can obtain the maximum possible number of detections by
setting adjust_threshold equal to negative infinity.
!*/ !*/
template < template <
...@@ -161,11 +167,11 @@ namespace dlib ...@@ -161,11 +167,11 @@ namespace dlib
full_object_detections for the resulting object detection boxes. full_object_detections for the resulting object detection boxes.
- The detection threshold is adjusted by having adjust_threshold added to - The detection threshold is adjusted by having adjust_threshold added to
it. Therefore, an adjust_threshold value > 0 makes detecting objects it. Therefore, an adjust_threshold value > 0 makes detecting objects
harder while a negative one makes it easier. Moreover, the following harder while a negative value makes it easier. Moreover, the following
will be true for all valid i: will be true for all valid i:
- #dets[i].first >= adjust_threshold - #dets[i].first >= adjust_threshold
This means that, for example, you can obtain all possible detections as This means that, for example, you can obtain the maximum possible number
outputs by setting adjust_threshold equal to negative infinity. of detections by setting adjust_threshold equal to negative infinity.
!*/ !*/
template < template <
......
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