pub struct Elliptic_KeyPoint { /* private fields */ }
Expand description

Elliptic region around an interest point.

Implementations§

Trait Implementations§

source§

impl Boxed for Elliptic_KeyPoint

source§

unsafe fn from_raw(ptr: *mut c_void) -> Self

Wrap the specified raw pointer Read more
source§

fn into_raw(self) -> *mut c_void

Return an the underlying raw pointer while consuming this wrapper. Read more
source§

fn as_raw(&self) -> *const c_void

Return the underlying raw pointer. Read more
source§

fn as_raw_mut(&mut self) -> *mut c_void

Return the underlying mutable raw pointer Read more
source§

impl Debug for Elliptic_KeyPoint

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Elliptic_KeyPoint

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Elliptic_KeyPointTrait for Elliptic_KeyPoint

source§

fn as_raw_mut_Elliptic_KeyPoint(&mut self) -> *mut c_void

source§

fn set_axes(&mut self, val: Size_<f32>)

the lengths of the major and minor ellipse axes
source§

fn set_si(&mut self, val: f32)

the integration scale at which the parameters were estimated
source§

fn set_transf(&mut self, val: Matx23f)

the transformation between image space and local patch space
source§

impl Elliptic_KeyPointTraitConst for Elliptic_KeyPoint

source§

fn as_raw_Elliptic_KeyPoint(&self) -> *const c_void

source§

fn axes(&self) -> Size_<f32>

the lengths of the major and minor ellipse axes
source§

fn si(&self) -> f32

the integration scale at which the parameters were estimated
source§

fn transf(&self) -> Matx23f

the transformation between image space and local patch space
source§

impl From<Elliptic_KeyPoint> for KeyPoint

source§

fn from(s: Elliptic_KeyPoint) -> Self

Converts to this type from the input type.
source§

impl KeyPointTrait for Elliptic_KeyPoint

source§

fn as_raw_mut_KeyPoint(&mut self) -> *mut c_void

source§

fn set_pt(&mut self, val: Point2f)

coordinates of the keypoints
source§

fn set_size(&mut self, val: f32)

diameter of the meaningful keypoint neighborhood
source§

fn set_angle(&mut self, val: 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.
source§

fn set_response(&mut self, val: f32)

the response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling
source§

fn set_octave(&mut self, val: i32)

octave (pyramid layer) from which the keypoint has been extracted
source§

fn set_class_id(&mut self, val: i32)

object class (if the keypoints need to be clustered by an object they belong to)
source§

impl KeyPointTraitConst for Elliptic_KeyPoint

source§

fn as_raw_KeyPoint(&self) -> *const c_void

source§

fn pt(&self) -> Point2f

coordinates of the keypoints
source§

fn size(&self) -> f32

diameter of the meaningful keypoint neighborhood
source§

fn angle(&self) -> 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.
source§

fn response(&self) -> f32

the response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling
source§

fn octave(&self) -> i32

octave (pyramid layer) from which the keypoint has been extracted
source§

fn class_id(&self) -> i32

object class (if the keypoints need to be clustered by an object they belong to)
source§

fn hash(&self) -> Result<size_t>

source§

impl Send for Elliptic_KeyPoint

source§

impl VectorElement for Elliptic_KeyPointwhere Vector<Elliptic_KeyPoint>: VectorExtern<Elliptic_KeyPoint>,

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.