mirror of https://github.com/davisking/dlib.git
Clarified spec.
This commit is contained in:
parent
46eb8d1c8d
commit
7a8dcf2f2f
|
@ -197,12 +197,11 @@ namespace dlib
|
||||||
ensures
|
ensures
|
||||||
- Each local feature is extracted from a certain point in the input image.
|
- Each local feature is extracted from a certain point in the input image.
|
||||||
This function returns the identity of the local feature corresponding
|
This function returns the identity of the local feature corresponding
|
||||||
to any particular image location p. Or in other words,
|
to the image location p. Or in other words, let P == image_to_feat_space(p),
|
||||||
let P == image_to_feat_space(p), then (*this)(P.y(),P.x()) == the local
|
then (*this)(P.y(),P.x()) == the local feature closest to, or centered at,
|
||||||
feature closest to, or centered at, the point p in the input image. Note
|
the point p in the input image. Note that some image points might not have
|
||||||
that some image points might not have corresponding feature locations.
|
corresponding feature locations. E.g. border points or points outside the
|
||||||
E.g. border points or points outside the image. In these cases the returned
|
image. In these cases the returned point will be outside get_rect(*this).
|
||||||
point will be outside get_rect(*this).
|
|
||||||
!*/
|
!*/
|
||||||
|
|
||||||
const rectangle image_to_feat_space (
|
const rectangle image_to_feat_space (
|
||||||
|
|
Loading…
Reference in New Issue