[][src]Struct cv::feature::akaze::KeyPoint

pub struct KeyPoint {
    pub point: (f32, f32),
    pub response: f32,
    pub size: f32,
    pub octave: usize,
    pub class_id: usize,
    pub angle: f32,
}

A point of interest in an image. This pretty much follows from OpenCV conventions.

Fields

point: (f32, f32)

The horizontal coordinate in a coordinate system is defined s.t. +x faces right and starts from the top of the image. the vertical coordinate in a coordinate system is defined s.t. +y faces toward the bottom of an image and starts from the left side of the image.

response: f32

The magnitude of response from the detector.

size: f32

The radius defining the extent of the keypoint, in pixel units

octave: usize

The level of scale space in which the keypoint was detected.

class_id: usize

A classification ID

angle: f32

The orientation angle

Trait Implementations

impl Clone for KeyPoint[src]

impl Copy for KeyPoint[src]

impl Debug for KeyPoint[src]

impl ImagePoint for KeyPoint[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<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,