[][src]Struct cv_core::NormalizedKeyPoint

pub struct NormalizedKeyPoint(pub Point2<f32>);

A point in normalized image coordinates. This keypoint has been corrected for distortion and normalized based on the camrea intrinsic matrix. Please note that the intrinsic matrix accounts for the natural focal length and any magnification to the image. Ultimately, the key points must be represented by their position on the camera sensor and normalized to the focal length of the camera.

Methods

impl NormalizedKeyPoint[src]

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

Trait Implementations

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

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

impl Clone for NormalizedKeyPoint[src]

impl Copy for NormalizedKeyPoint[src]

impl Debug for NormalizedKeyPoint[src]

impl Deref for NormalizedKeyPoint[src]

type Target = Point2<f32>

The resulting type after dereferencing.

impl DerefMut for NormalizedKeyPoint[src]

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

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

impl PartialEq<NormalizedKeyPoint> for NormalizedKeyPoint[src]

impl PartialOrd<NormalizedKeyPoint> for NormalizedKeyPoint[src]

impl StructuralPartialEq for NormalizedKeyPoint[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>,