#[repr(C)]pub struct _VlSiftKeypoint {
pub o: c_int,
pub ix: c_int,
pub iy: c_int,
pub is: c_int,
pub x: f32,
pub y: f32,
pub s: f32,
pub sigma: f32,
}Expand description
- @brief SIFT filter keypoint
- This structure represent a keypoint as extracted by the SIFT
- filter ::VlSiftFilt.
Fields§
§o: c_int< o coordinate (octave).
ix: c_int< Integer unnormalized x coordinate.
iy: c_int< Integer unnormalized y coordinate.
is: c_int< Integer s coordinate.
x: f32< x coordinate.
y: f32< y coordinate.
s: f32< s coordinate.
sigma: f32< scale.
Trait Implementations§
Source§impl Clone for _VlSiftKeypoint
impl Clone for _VlSiftKeypoint
Source§impl Debug for _VlSiftKeypoint
impl Debug for _VlSiftKeypoint
impl Copy for _VlSiftKeypoint
Auto Trait Implementations§
impl Freeze for _VlSiftKeypoint
impl RefUnwindSafe for _VlSiftKeypoint
impl Send for _VlSiftKeypoint
impl Sync for _VlSiftKeypoint
impl Unpin for _VlSiftKeypoint
impl UnwindSafe for _VlSiftKeypoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more