[][src]Struct cv_core::ImageKeyPoint

pub struct ImageKeyPoint(pub Point2<f32>);

A point on an image frame. This type should only be used when the point location is on the image frame in pixel coordinates. This means the keypoint is neither undistorted nor normalized.

Methods

impl ImageKeyPoint[src]

pub fn new(__0: Point2<f32>) -> ImageKeyPoint[src]

Trait Implementations

impl AsMut<Point<f32, U2>> for ImageKeyPoint[src]

impl AsRef<Point<f32, U2>> for ImageKeyPoint[src]

impl Clone for ImageKeyPoint[src]

impl Copy for ImageKeyPoint[src]

impl Debug for ImageKeyPoint[src]

impl Deref for ImageKeyPoint[src]

type Target = Point2<f32>

The resulting type after dereferencing.

impl DerefMut for ImageKeyPoint[src]

impl From<ImageKeyPoint> for Point2<f32>[src]

impl From<Point<f32, U2>> for ImageKeyPoint[src]

impl PartialEq<ImageKeyPoint> for ImageKeyPoint[src]

impl PartialOrd<ImageKeyPoint> for ImageKeyPoint[src]

impl StructuralPartialEq for ImageKeyPoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,