Struct cv_core::KeyPoint [−][src]
Expand description
A point on an image frame. This type should be used when the point location is on the image frame in pixel coordinates. This means the keypoint is neither undistorted nor normalized.
For calibrated coordinates, use a type that implements Bearing
.
This can be a type from a camera model crate (like cv-pinhole
), or
it can be the Unit<Vector3<f64>>
type, which implements bearing.
Tuple Fields
0: Point2<f64>
Trait Implementations
Retrieves the point on the image
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for KeyPoint
impl UnwindSafe for KeyPoint
Blanket Implementations
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
Checks if self
is actually part of its subset T
(and can be converted to it).
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
The inclusion map: converts self
to the equivalent element of its superset.