#[repr(C)]pub struct HistogramPhaseUnwrapping_Params {
pub width: i32,
pub height: i32,
pub hist_thresh: f32,
pub nbr_of_small_bins: i32,
pub nbr_of_large_bins: i32,
}Expand description
Parameters of phaseUnwrapping constructor.
Parameters
- width: Phase map width.
- height: Phase map height.
- histThresh: Bins in the histogram are not of equal size. Default value is 3pipi. The one before “histThresh” value are smaller.
- nbrOfSmallBins: Number of bins between 0 and “histThresh”. Default value is 10.
- nbrOfLargeBins: Number of bins between “histThresh” and 32pipi (highest edge reliability value). Default value is 5.
Fields§
§width: i32§height: i32§hist_thresh: f32§nbr_of_small_bins: i32§nbr_of_large_bins: i32Implementations§
Trait Implementations§
source§impl Clone for HistogramPhaseUnwrapping_Params
impl Clone for HistogramPhaseUnwrapping_Params
source§fn clone(&self) -> HistogramPhaseUnwrapping_Params
fn clone(&self) -> HistogramPhaseUnwrapping_Params
Returns a copy 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 PartialEq<HistogramPhaseUnwrapping_Params> for HistogramPhaseUnwrapping_Params
impl PartialEq<HistogramPhaseUnwrapping_Params> for HistogramPhaseUnwrapping_Params
source§fn eq(&self, other: &HistogramPhaseUnwrapping_Params) -> bool
fn eq(&self, other: &HistogramPhaseUnwrapping_Params) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for HistogramPhaseUnwrapping_Params
impl StructuralPartialEq for HistogramPhaseUnwrapping_Params
Auto Trait Implementations§
impl RefUnwindSafe for HistogramPhaseUnwrapping_Params
impl Send for HistogramPhaseUnwrapping_Params
impl Sync for HistogramPhaseUnwrapping_Params
impl Unpin for HistogramPhaseUnwrapping_Params
impl UnwindSafe for HistogramPhaseUnwrapping_Params
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