Struct cv::core::KeyPoint [−][src]
Data structure for salient point detectors
Fields
point: Point2f
Coordinates of the keypoint
size: f32
Diameter of the meaningful keypoint neighborhood
angle: f32
Computed orientation of the keypoint (-1 if not applicable); it’s in [0,360) degrees and measured relative to image coordinate system, ie in clockwise.
response: f32
The response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling
octave: c_int
Octave (pyramid layer) from which the keypoint has been extracted
class_id: c_int
Object class (if the keypoints need to be clustered by an object they belong to)
Trait Implementations
impl Clone for KeyPoint
[src]
impl Copy for KeyPoint
[src]
impl Debug for KeyPoint
[src]
impl Default for KeyPoint
[src]
Auto Trait Implementations
impl RefUnwindSafe for KeyPoint
impl Send for KeyPoint
impl Sync for KeyPoint
impl Unpin for KeyPoint
impl UnwindSafe for KeyPoint
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,