Commit cf7e7076 authored by Davis King's avatar Davis King

clarified specs

parent a63e76d7
...@@ -305,6 +305,8 @@ namespace dlib ...@@ -305,6 +305,8 @@ namespace dlib
candidate object location output from detect(). Note that this vector is candidate object location output from detect(). Note that this vector is
added to psi. Note also that you must use get_full_object_detection() to added to psi. Note also that you must use get_full_object_detection() to
convert a rectangle from detect() into the needed full_object_detection. convert a rectangle from detect() into the needed full_object_detection.
- The dimensionality of the vector added to psi is get_num_dimensions(). This
means that elements of psi after psi(get_num_dimensions()-1) are not modified.
- Since scan_image_boxes only searches a limited set of object locations, - Since scan_image_boxes only searches a limited set of object locations,
not all possible rectangles can be output by detect(). So in the case not all possible rectangles can be output by detect(). So in the case
where obj.get_rect() could not arise from a call to detect(), this where obj.get_rect() could not arise from a call to detect(), this
......
...@@ -422,6 +422,8 @@ namespace dlib ...@@ -422,6 +422,8 @@ namespace dlib
sliding window location. Note that this vector is added to psi. Note sliding window location. Note that this vector is added to psi. Note
also that you must use get_full_object_detection() to convert a rect from also that you must use get_full_object_detection() to convert a rect from
detect() into the needed full_object_detection. detect() into the needed full_object_detection.
- The dimensionality of the vector added to psi is get_num_dimensions(). This
means that elements of psi after psi(get_num_dimensions()-1) are not modified.
- Since scan_image_pyramid is a sliding window classifier system, not all - Since scan_image_pyramid is a sliding window classifier system, not all
possible rectangles can be output by detect(). So in the case where possible rectangles can be output by detect(). So in the case where
obj.get_rect() could not arise from a call to detect(), this function obj.get_rect() could not arise from a call to detect(), this function
......
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