pub struct OdometrySettings { /* private fields */ }Implementations§
Source§impl OdometrySettings
impl OdometrySettings
pub fn default() -> Result<OdometrySettings>
pub fn copy( unnamed: &impl OdometrySettingsTraitConst, ) -> Result<OdometrySettings>
Trait Implementations§
Source§impl Boxed for OdometrySettings
impl Boxed for OdometrySettings
Source§unsafe fn from_raw(
ptr: <OdometrySettings as OpenCVFromExtern>::ExternReceive,
) -> Self
unsafe fn from_raw( ptr: <OdometrySettings as OpenCVFromExtern>::ExternReceive, ) -> Self
Wrap the specified raw pointer Read more
Source§fn into_raw(
self,
) -> <OdometrySettings as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw( self, ) -> <OdometrySettings as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
Source§fn as_raw(&self) -> <OdometrySettings as OpenCVTypeExternContainer>::ExternSend
fn as_raw(&self) -> <OdometrySettings as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
Source§fn as_raw_mut(
&mut self,
) -> <OdometrySettings as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut( &mut self, ) -> <OdometrySettings as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
Source§impl Clone for OdometrySettings
impl Clone for OdometrySettings
Source§impl Debug for OdometrySettings
impl Debug for OdometrySettings
Source§impl Drop for OdometrySettings
impl Drop for OdometrySettings
Source§impl OdometrySettingsTrait for OdometrySettings
impl OdometrySettingsTrait for OdometrySettings
fn as_raw_mut_OdometrySettings(&mut self) -> *mut c_void
fn set(&mut self, unnamed: &impl OdometrySettingsTraitConst) -> Result<()>
fn set_camera_matrix(&mut self, val: &impl ToInputArray) -> Result<()>
fn set_iter_counts(&mut self, val: &impl ToInputArray) -> Result<()>
fn set_min_depth(&mut self, val: f32) -> Result<()>
fn set_max_depth(&mut self, val: f32) -> Result<()>
fn set_max_depth_diff(&mut self, val: f32) -> Result<()>
fn set_max_points_part(&mut self, val: f32) -> Result<()>
fn set_sobel_size(&mut self, val: i32) -> Result<()>
fn set_sobel_scale(&mut self, val: f64) -> Result<()>
fn set_normal_win_size(&mut self, val: i32) -> Result<()>
fn set_normal_diff_threshold(&mut self, val: f32) -> Result<()>
fn set_normal_method(&mut self, nm: RgbdNormals_RgbdNormalsMethod) -> Result<()>
fn set_angle_threshold(&mut self, val: f32) -> Result<()>
fn set_max_translation(&mut self, val: f32) -> Result<()>
fn set_max_rotation(&mut self, val: f32) -> Result<()>
fn set_min_gradient_magnitude(&mut self, val: f32) -> Result<()>
fn set_min_gradient_magnitudes(&mut self, val: &impl ToInputArray) -> Result<()>
Source§impl OdometrySettingsTraitConst for OdometrySettings
impl OdometrySettingsTraitConst for OdometrySettings
fn as_raw_OdometrySettings(&self) -> *const c_void
fn get_camera_matrix(&self, val: &mut impl ToOutputArray) -> Result<()>
fn get_iter_counts(&self, val: &mut impl ToOutputArray) -> Result<()>
fn get_min_depth(&self) -> Result<f32>
fn get_max_depth(&self) -> Result<f32>
fn get_max_depth_diff(&self) -> Result<f32>
fn get_max_points_part(&self) -> Result<f32>
fn get_sobel_size(&self) -> Result<i32>
fn get_sobel_scale(&self) -> Result<f64>
fn get_normal_win_size(&self) -> Result<i32>
fn get_normal_diff_threshold(&self) -> Result<f32>
fn get_normal_method(&self) -> Result<RgbdNormals_RgbdNormalsMethod>
fn get_angle_threshold(&self) -> Result<f32>
fn get_max_translation(&self) -> Result<f32>
fn get_max_rotation(&self) -> Result<f32>
fn get_min_gradient_magnitude(&self) -> Result<f32>
fn get_min_gradient_magnitudes( &self, val: &mut impl ToOutputArray, ) -> Result<()>
impl Send for OdometrySettings
Auto Trait Implementations§
impl !Sync for OdometrySettings
impl Freeze for OdometrySettings
impl RefUnwindSafe for OdometrySettings
impl Unpin for OdometrySettings
impl UnsafeUnpin for OdometrySettings
impl UnwindSafe for OdometrySettings
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<Mat> ModifyInplace for Matwhere
Mat: Boxed,
impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
Source§unsafe fn modify_inplace<Res>(
&mut self,
f: impl FnOnce(&Mat, &mut Mat) -> Res,
) -> Res
unsafe fn modify_inplace<Res>( &mut self, f: impl FnOnce(&Mat, &mut Mat) -> Res, ) -> Res
Helper function to call OpenCV functions that allow in-place modification of a
Mat or another similar object. By passing
a mutable reference to the Mat to this function your closure will get called with the read reference and a write references
to the same Mat. This is unsafe in a general case as it leads to having non-exclusive mutable access to the internal data,
but it can be useful for some performance sensitive operations. One example of an OpenCV function that allows such in-place
modification is imgproc::threshold. Read more