Struct opencv::phase_unwrapping::PhaseUnwrapping
source · pub struct PhaseUnwrapping { /* private fields */ }Expand description
Abstract base class for phase unwrapping.
Trait Implementations§
source§impl AlgorithmTrait for PhaseUnwrapping
impl AlgorithmTrait for PhaseUnwrapping
source§impl AlgorithmTraitConst for PhaseUnwrapping
impl AlgorithmTraitConst for PhaseUnwrapping
fn as_raw_Algorithm(&self) -> *const c_void
source§fn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
Stores algorithm parameters in a file storage
source§fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
Stores algorithm parameters in a file storage Read more
source§fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
@deprecated Read more
source§fn empty(&self) -> Result<bool>
fn empty(&self) -> Result<bool>
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
source§fn save(&self, filename: &str) -> Result<()>
fn save(&self, filename: &str) -> Result<()>
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
source§fn get_default_name(&self) -> Result<String>
fn get_default_name(&self) -> Result<String>
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
source§impl Boxed for PhaseUnwrapping
impl Boxed for PhaseUnwrapping
source§impl Debug for PhaseUnwrapping
impl Debug for PhaseUnwrapping
source§impl Drop for PhaseUnwrapping
impl Drop for PhaseUnwrapping
source§impl From<HistogramPhaseUnwrapping> for PhaseUnwrapping
impl From<HistogramPhaseUnwrapping> for PhaseUnwrapping
source§fn from(s: HistogramPhaseUnwrapping) -> Self
fn from(s: HistogramPhaseUnwrapping) -> Self
Converts to this type from the input type.
source§impl From<PhaseUnwrapping> for Algorithm
impl From<PhaseUnwrapping> for Algorithm
source§fn from(s: PhaseUnwrapping) -> Self
fn from(s: PhaseUnwrapping) -> Self
Converts to this type from the input type.
source§impl PhaseUnwrappingTrait for PhaseUnwrapping
impl PhaseUnwrappingTrait for PhaseUnwrapping
fn as_raw_mut_PhaseUnwrapping(&mut self) -> *mut c_void
source§fn unwrap_phase_map(
&mut self,
wrapped_phase_map: &impl ToInputArray,
unwrapped_phase_map: &mut impl ToOutputArray,
shadow_mask: &impl ToInputArray
) -> Result<()>
fn unwrap_phase_map( &mut self, wrapped_phase_map: &impl ToInputArray, unwrapped_phase_map: &mut impl ToOutputArray, shadow_mask: &impl ToInputArray ) -> Result<()>
Unwraps a 2D phase map. Read more
source§impl PhaseUnwrappingTraitConst for PhaseUnwrapping
impl PhaseUnwrappingTraitConst for PhaseUnwrapping
fn as_raw_PhaseUnwrapping(&self) -> *const c_void
impl Send for PhaseUnwrapping
Auto Trait Implementations§
impl RefUnwindSafe for PhaseUnwrapping
impl !Sync for PhaseUnwrapping
impl Unpin for PhaseUnwrapping
impl UnwindSafe for PhaseUnwrapping
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