Commit 35de9101 authored by Davis King's avatar Davis King

Clarified the thread safety of evaluate_detectors().

parent dd3bf1f2
...@@ -744,6 +744,9 @@ namespace dlib ...@@ -744,6 +744,9 @@ namespace dlib
- #dets[i].detection_confidence >= adjust_threshold - #dets[i].detection_confidence >= adjust_threshold
This means that, for example, you can obtain the maximum possible number of This means that, for example, you can obtain the maximum possible number of
detections by setting adjust_threshold equal to negative infinity. detections by setting adjust_threshold equal to negative infinity.
- This function is threadsafe in the sense that multiple threads can call
evaluate_detectors() with the same instances of detectors and img without
requiring a mutex lock.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -766,6 +769,9 @@ namespace dlib ...@@ -766,6 +769,9 @@ namespace dlib
- This function just calls the above evaluate_detectors() routine and copies - This function just calls the above evaluate_detectors() routine and copies
the output dets into a vector<rectangle> object and returns it. Therefore, the output dets into a vector<rectangle> object and returns it. Therefore,
this function is provided for convenience. this function is provided for convenience.
- This function is threadsafe in the sense that multiple threads can call
evaluate_detectors() with the same instances of detectors and img without
requiring a mutex lock.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
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