pub struct FastOptions {
pub threshold: u8,
pub nonmax_suppression: bool,
}Expand description
FAST detector configuration for the standard 9-of-16 radius-three circle.
Fields§
§threshold: u8Strict center-to-circle intensity threshold.
nonmax_suppression: boolRetain only strict 3x3 maxima of the FAST score.
Trait Implementations§
Source§impl Clone for FastOptions
impl Clone for FastOptions
Source§fn clone(&self) -> FastOptions
fn clone(&self) -> FastOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FastOptions
impl Debug for FastOptions
Source§impl Default for FastOptions
impl Default for FastOptions
Source§impl PartialEq for FastOptions
impl PartialEq for FastOptions
Source§fn eq(&self, other: &FastOptions) -> bool
fn eq(&self, other: &FastOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FastOptions
impl Eq for FastOptions
impl StructuralPartialEq for FastOptions
Auto Trait Implementations§
impl Freeze for FastOptions
impl RefUnwindSafe for FastOptions
impl Send for FastOptions
impl Sync for FastOptions
impl Unpin for FastOptions
impl UnsafeUnpin for FastOptions
impl UnwindSafe for FastOptions
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