pub struct OrbConfig {
pub num_features: usize,
pub scale_factor: f32,
pub num_levels: usize,
pub fast_threshold: f32,
}Expand description
Configuration for ORB feature detector. Configuration for the ORB feature detector.
Fields§
§num_features: usizeMaximum number of features to retain (default 500).
scale_factor: f32Scale factor between pyramid levels (default 1.2).
num_levels: usizeNumber of pyramid levels (default 8).
fast_threshold: f32FAST threshold (default 20.0/255.0).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OrbConfig
impl RefUnwindSafe for OrbConfig
impl Send for OrbConfig
impl Sync for OrbConfig
impl Unpin for OrbConfig
impl UnsafeUnpin for OrbConfig
impl UnwindSafe for OrbConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more