pub struct RetinaParameters { /* private fields */ }
Expand description
retina model parameters structure
For better clarity, check explenations on the comments of methods : setupOPLandIPLParvoChannel and setupIPLMagnoChannel
Here is the default configuration file of the retina module. It gives results such as the first retina output shown on the top of this page.
@include default_retina_config.xml
Here is the ’realistic“ setup used to obtain the second retina output shown on the top of this page.
@include realistic_retina_config.xml
Implementations§
Source§impl RetinaParameters
impl RetinaParameters
Sourcepub fn default() -> RetinaParameters
pub fn default() -> RetinaParameters
Creates a default instance of the class by calling the default constructor
Trait Implementations§
Source§impl Boxed for RetinaParameters
impl Boxed for RetinaParameters
Source§unsafe fn from_raw(
ptr: <RetinaParameters as OpenCVFromExtern>::ExternReceive,
) -> Self
unsafe fn from_raw( ptr: <RetinaParameters as OpenCVFromExtern>::ExternReceive, ) -> Self
Wrap the specified raw pointer Read more
Source§fn into_raw(
self,
) -> <RetinaParameters as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw( self, ) -> <RetinaParameters as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
Source§fn as_raw(&self) -> <RetinaParameters as OpenCVTypeExternContainer>::ExternSend
fn as_raw(&self) -> <RetinaParameters as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
Source§fn as_raw_mut(
&mut self,
) -> <RetinaParameters as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut( &mut self, ) -> <RetinaParameters as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
Source§impl Clone for RetinaParameters
impl Clone for RetinaParameters
Source§impl Debug for RetinaParameters
impl Debug for RetinaParameters
Source§impl Default for RetinaParameters
impl Default for RetinaParameters
Source§impl Drop for RetinaParameters
impl Drop for RetinaParameters
Source§impl RetinaParametersTrait for RetinaParameters
impl RetinaParametersTrait for RetinaParameters
fn as_raw_mut_RetinaParameters(&mut self) -> *mut c_void
fn set_op_land_ipl_parvo( &mut self, val: RetinaParameters_OPLandIplParvoParameters, )
fn set_ipl_magno(&mut self, val: RetinaParameters_IplMagnoParameters)
Source§impl RetinaParametersTraitConst for RetinaParameters
impl RetinaParametersTraitConst for RetinaParameters
fn as_raw_RetinaParameters(&self) -> *const c_void
fn op_land_ipl_parvo(&self) -> RetinaParameters_OPLandIplParvoParameters
fn ipl_magno(&self) -> RetinaParameters_IplMagnoParameters
impl Send for RetinaParameters
Auto Trait Implementations§
impl Freeze for RetinaParameters
impl RefUnwindSafe for RetinaParameters
impl !Sync for RetinaParameters
impl Unpin for RetinaParameters
impl UnwindSafe for RetinaParameters
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