pub struct NDStatsParams {Show 36 fields
pub compute_statistics: usize,
pub bgd_width: usize,
pub min_value: usize,
pub max_value: usize,
pub mean_value: usize,
pub sigma_value: usize,
pub total: usize,
pub net: usize,
pub min_x: usize,
pub min_y: usize,
pub max_x: usize,
pub max_y: usize,
pub compute_centroid: usize,
pub centroid_threshold: usize,
pub centroid_total: usize,
pub centroid_x: usize,
pub centroid_y: usize,
pub sigma_x: usize,
pub sigma_y: usize,
pub sigma_xy: usize,
pub skewness_x: usize,
pub skewness_y: usize,
pub kurtosis_x: usize,
pub kurtosis_y: usize,
pub eccentricity: usize,
pub orientation: usize,
pub compute_histogram: usize,
pub hist_size: usize,
pub hist_min: usize,
pub hist_max: usize,
pub hist_below: usize,
pub hist_above: usize,
pub hist_entropy: usize,
pub compute_profiles: usize,
pub cursor_x: usize,
pub cursor_y: usize,
}Expand description
Parameter indices for NDStats plugin-specific params.
Fields§
§compute_statistics: usize§bgd_width: usize§min_value: usize§max_value: usize§mean_value: usize§sigma_value: usize§total: usize§net: usize§min_x: usize§min_y: usize§max_x: usize§max_y: usize§compute_centroid: usize§centroid_threshold: usize§centroid_total: usize§centroid_x: usize§centroid_y: usize§sigma_x: usize§sigma_y: usize§sigma_xy: usize§skewness_x: usize§skewness_y: usize§kurtosis_x: usize§kurtosis_y: usize§eccentricity: usize§orientation: usize§compute_histogram: usize§hist_size: usize§hist_min: usize§hist_max: usize§hist_below: usize§hist_above: usize§hist_entropy: usize§compute_profiles: usize§cursor_x: usize§cursor_y: usizeTrait Implementations§
Source§impl Clone for NDStatsParams
impl Clone for NDStatsParams
Source§fn clone(&self) -> NDStatsParams
fn clone(&self) -> NDStatsParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for NDStatsParams
impl Default for NDStatsParams
Source§fn default() -> NDStatsParams
fn default() -> NDStatsParams
Returns the “default value” for a type. Read more
impl Copy for NDStatsParams
Auto Trait Implementations§
impl Freeze for NDStatsParams
impl RefUnwindSafe for NDStatsParams
impl Send for NDStatsParams
impl Sync for NDStatsParams
impl Unpin for NDStatsParams
impl UnsafeUnpin for NDStatsParams
impl UnwindSafe for NDStatsParams
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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