Struct opencv::boxed_ref::BoxedRef

source ·
pub struct BoxedRef<'r, T: Boxed> { /* private fields */ }
Expand description

Wrapper for the type implementing Boxed trait that allows to retain the lifetime of the referenced object.

This wrapper implements all traits that the underlying type does, but explicitly doesn’t implement Deref and DerefMut to avoid being able to mem::swap the reference out of the wrapper.

Implementations§

source§

impl<T: Boxed + Clone> BoxedRef<'_, T>

source

pub fn clone_pointee(&self) -> T

Clones the pointee of this BoxedRef

Trait Implementations§

source§

impl AKAZETraitConst for BoxedRef<'_, AKAZE>

source§

impl ANN_MLPTraitConst for BoxedRef<'_, ANN_MLP>

source§

fn as_raw_ANN_MLP(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_train_method(&self) -> Result<i32>

Returns current training method
source§

fn get_layer_sizes(&self) -> Result<Mat>

Integer vector specifying the number of neurons in each layer including the input and output layers. The very first element specifies the number of elements in the input layer. The last element - number of elements in the output layer. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Termination criteria of the training algorithm. You can specify the maximum number of iterations (maxCount) and/or how much the error could change between the iterations to make the algorithm continue (epsilon). Default value is TermCriteria(TermCriteria::MAX_ITER + TermCriteria::EPS, 1000, 0.01). Read more
source§

fn get_backprop_weight_scale(&self) -> Result<f64>

BPROP: Strength of the weight gradient term. The recommended value is about 0.1. Default value is 0.1. Read more
source§

fn get_backprop_momentum_scale(&self) -> Result<f64>

BPROP: Strength of the momentum term (the difference between weights on the 2 previous iterations). This parameter provides some inertia to smooth the random fluctuations of the weights. It can vary from 0 (the feature is disabled) to 1 and beyond. The value 0.1 or so is good enough. Default value is 0.1. Read more
source§

fn get_rprop_dw0(&self) -> Result<f64>

RPROP: Initial value inline formula of update-values inline formula. Default value is 0.1. Read more
source§

fn get_rprop_dw_plus(&self) -> Result<f64>

RPROP: Increase factor inline formula. It must be >1. Default value is 1.2. Read more
source§

fn get_rprop_dw_minus(&self) -> Result<f64>

RPROP: Decrease factor inline formula. It must be <1. Default value is 0.5. Read more
source§

fn get_rprop_dw_min(&self) -> Result<f64>

RPROP: Update-values lower limit inline formula. It must be positive. Default value is FLT_EPSILON. Read more
source§

fn get_rprop_dw_max(&self) -> Result<f64>

RPROP: Update-values upper limit inline formula. It must be >1. Default value is 50. Read more
source§

fn get_anneal_initial_t(&self) -> Result<f64>

ANNEAL: Update initial temperature. It must be >=0. Default value is 10. Read more
source§

fn get_anneal_final_t(&self) -> Result<f64>

ANNEAL: Update final temperature. It must be >=0 and less than initialT. Default value is 0.1. Read more
source§

fn get_anneal_cooling_ratio(&self) -> Result<f64>

ANNEAL: Update cooling ratio. It must be >0 and less than 1. Default value is 0.95. Read more
source§

fn get_anneal_ite_per_step(&self) -> Result<i32>

ANNEAL: Update iteration per step. It must be >0 . Default value is 10. Read more
source§

fn get_weights(&self, layer_idx: i32) -> Result<Mat>

source§

impl AbsLayerTraitConst for BoxedRef<'_, AbsLayer>

source§

fn as_raw_AbsLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AccumLayerTraitConst for BoxedRef<'_, AccumLayer>

source§

fn as_raw_AccumLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AcosLayerTraitConst for BoxedRef<'_, AcosLayer>

source§

fn as_raw_AcosLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AcoshLayerTraitConst for BoxedRef<'_, AcoshLayer>

source§

fn as_raw_AcoshLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ActivationLayerInt8TraitConst for BoxedRef<'_, ActivationLayerInt8>

source§

fn as_raw_ActivationLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AbsLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AcosLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AcoshLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ActivationLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ActivationLayerInt8>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AsinLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AsinhLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AtanLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, AtanhLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, BNLLLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, BatchNormLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, BatchNormLayerInt8>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, CeilLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, CeluLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ChannelsPReLULayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, CosLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, CoshLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ELULayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ErfLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ExpLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, FloorLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, GeluApproximationLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, GeluLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, HardSigmoidLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, HardSwishLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, LogLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, MishLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, NotLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, PowerLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ReLU6Layer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ReLULayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ReciprocalLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, RoundLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SeluLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ShrinkLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SigmoidLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SignLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SinLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SinhLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SoftplusLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SoftsignLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SqrtLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, SwishLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, TanHLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, TanLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl ActivationLayerTraitConst for BoxedRef<'_, ThresholdedReluLayer>

source§

fn as_raw_ActivationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn forward_slice( &self, src: &[f32], dst: &mut [f32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

fn forward_slice_1( &self, src: &[i32], lut: &[i32], dst: &mut [i32], out_plane_size: size_t, cn0: i32, cn1: i32 ) -> Result<()>

source§

impl AdaptiveManifoldFilterTraitConst for BoxedRef<'_, AdaptiveManifoldFilter>

source§

fn as_raw_AdaptiveManifoldFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_sigma_s(&self) -> Result<f64>

See also Read more
source§

fn get_sigma_r(&self) -> Result<f64>

See also Read more
source§

fn get_tree_height(&self) -> Result<i32>

See also Read more
source§

fn get_pca_iterations(&self) -> Result<i32>

See also Read more
source§

fn get_adjust_outliers(&self) -> Result<bool>

See also Read more
source§

fn get_use_rng(&self) -> Result<bool>

See also Read more
source§

impl AffineFeature2DTraitConst for BoxedRef<'_, AffineFeature2D>

source§

fn as_raw_AffineFeature2D( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AffineFeature2DTraitConst for BoxedRef<'_, TBMR>

source§

fn as_raw_AffineFeature2D( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AffineFeatureTraitConst for BoxedRef<'_, AffineFeature>

source§

fn as_raw_AffineFeature( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_view_params( &self, tilts: &mut Vector<f32>, rolls: &mut Vector<f32> ) -> Result<()>

source§

fn get_default_name(&self) -> Result<String>

source§

impl AffineTransformerTraitConst for BoxedRef<'_, AffineTransformer>

source§

fn as_raw_AffineTransformer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_full_affine(&self) -> Result<bool>

source§

impl AffineWarperTraitConst for BoxedRef<'_, AffineWarper>

source§

fn as_raw_AffineWarper(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl AgastFeatureDetectorTraitConst for BoxedRef<'_, AgastFeatureDetector>

source§

impl AlgorithmTraitConst for BoxedRef<'_, AKAZE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ANN_MLP>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AbsLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AccumLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AcosLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AcoshLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ActivationLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ActivationLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AdaptiveManifoldFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AffineFeature>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AffineFeature2D>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AffineTransformer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AgastFeatureDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Algorithm>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AlignExposures>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AlignMTB>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ArgLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ArucoDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AsinLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AsinhLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AtanLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AtanhLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AttentionLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, AverageHash>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BEBLID>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BFMatcher>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BIF>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BNLLLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BRISK>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorCNT>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorGMG>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorGSOC>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorKNN>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorLSBP>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorMOG>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BackgroundSubtractorMOG2>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BaseCascadeClassifier>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BaseConvolutionLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BasicFaceRecognizer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BatchNormLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BatchNormLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BinaryDescriptor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BinaryDescriptorMatcher>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BlankLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BlockMeanHash>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Boost>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BoostDesc>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, BriefDescriptorExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CLAHE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG2>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_BroxOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_CLAHE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_CannyEdgeDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_CascadeClassifier>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_CornernessCriteria>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_CornersDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_DenseOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_DensePyrLKOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_DescriptorMatcher>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_DisparityBilateralFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_FarnebackOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_FastFeatureDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_Feature2DAsync>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_HOG>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_HoughCirclesDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_HoughLinesDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_HoughSegmentDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_NvidiaHWOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_NvidiaOpticalFlow_1_0>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_NvidiaOpticalFlow_2_0>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_ORB>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_OpticalFlowDual_TVL1>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_SparseOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_SparsePyrLKOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_StereoBM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_StereoBeliefPropagation>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_StereoConstantSpaceBP>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_StereoSGM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CUDA_TemplateMatching>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CalibrateCRF>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CalibrateDebevec>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CalibrateRobertson>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CeilLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CeluLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ChannelsPReLULayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CharucoDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ChiHistogramCostExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ColorMomentHash>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CompareLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ConcatLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ConjGradSolver>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ConstLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ContourFitting>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Convolution>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ConvolutionLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ConvolutionLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CorrelationLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CosLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CoshLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CropAndResizeLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CropLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CumSumLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, CustomPattern>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DAISY>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DFT>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DISOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DTFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DTrees>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DataAugmentationLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DeconvolutionLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DenseOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DenseRLOFOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DepthCleaner>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DequantizeLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DescriptorMatcher>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DetectionOutputLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DisparityFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DisparityWLSFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DownhillSolver>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, DualTVL1OpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ELULayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EMDHistogramCostExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EMDL1HistogramCostExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ERFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EdgeAwareInterpolator>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EdgeBoxes>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EdgeDrawing>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EigenFaceRecognizer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EinsumLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EltwiseLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, EltwiseLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ErfLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ExpLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ExpandLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FREAK>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FaceRecognizer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Facemark>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FacemarkAAM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FacemarkKazemi>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FacemarkLBF>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FacemarkTrain>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FarnebackOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FastBilateralSolverFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FastFeatureDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FastGlobalSmootherFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FastICPOdometry>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FastLineDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Feature2D>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Filter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FisherFaceRecognizer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FlannBasedMatcher>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FlattenLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FloorLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FlowWarpLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, FreeType2>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GFTTDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GPCTree>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GRULayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GatherElementsLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GatherLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GeluApproximationLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GeluLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GemmLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GeneralizedHough>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GeneralizedHoughBallard>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GeneralizedHoughGuil>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GraphSegmentation>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GrayCodePattern>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GrayworldWB>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, GuidedFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HardSigmoidLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HardSwishLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HarrisLaplaceFeatureDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HausdorffDistanceExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HfsSegment>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HistogramCostExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, HistogramPhaseUnwrapping>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ICPOdometry>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ImgHashBase>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, InnerProductLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, InnerProductLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, InstanceNormLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, InterpLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, KAZE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, KNearest>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LATCH>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LBPHFaceRecognizer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LMSolver>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LRNLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LSDDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LSTMLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LUCID>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Layer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LayerNormLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LearningBasedWB>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LineSegmentDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LogLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LogisticRegression>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, LookUpTable>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MACE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MCC_CCheckerDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MSDDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MSER>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MVNLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MarrHildrethHash>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MatMulLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MaxUnpoolLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MergeDebevec>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MergeExposures>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MergeMertens>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MergeRobertson>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MinProblemSolver>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MishLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MotionSaliency>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, MotionSaliencyBinWangApr2014>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, NaryEltwiseLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, NormHistogramCostExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, NormalBayesClassifier>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, NormalizeBBoxLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, NotLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ORB>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Objectness>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ObjectnessBING>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Odometry>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, OpticalFlowPCAFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PCTSignatures>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PCTSignaturesSQFD>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PHash>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PaddingLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PermuteLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PhaseUnwrapping>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Plot2d>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PoolingLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PoolingLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PowerLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, PriorBoxLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ProposalLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QualityBRISQUE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QualityBase>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QualityGMSD>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QualityMSE>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QualityPSNR>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QualitySSIM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, QuantizeLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RFFeatureGetter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RICInterpolator>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RNNLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RTrees>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RadialVarianceHash>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Rapid_GOSTracker>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Rapid_OLSTracker>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Rapid_Rapid>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Rapid_Tracker>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ReLU6Layer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ReLULayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ReciprocalLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ReduceLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RegionLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ReorgLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RequantizeLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ReshapeLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ResizeLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Retina>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RetinaFastToneMapping>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RgbdICPOdometry>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RgbdNormals>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RgbdOdometry>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RgbdPlane>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RidgeDetectionFilter>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, RoundLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SIFT>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SURF>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SVM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SVMSGD>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SVM_Kernel>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Saliency>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ScaleLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ScaleLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ScanSegment>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ScatterLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ScatterNDLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentation>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategy>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyColor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyFill>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyMultiple>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategySize>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyTexture>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SeluLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShapeContextDistanceExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShapeDistanceExtractor>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShapeTransformer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShiftLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShiftLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShrinkLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ShuffleChannelLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SigmoidLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SignLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SimpleBlobDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SimpleWB>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SinLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SinhLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SinusoidalPattern>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SliceLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SoftmaxLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SoftmaxLayerInt8>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SoftplusLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SoftsignLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SparseMatchInterpolator>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SparseOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SparsePyrLKOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SparseRLOFOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SplitLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SqrtLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StarDetector>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StatModel>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StaticSaliency>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StaticSaliencyFineGrained>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StaticSaliencySpectralResidual>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StereoBM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StereoMatcher>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StereoSGBM>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StructuredEdgeDetection>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, StructuredLightPattern>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperRes_BroxOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperRes_DenseOpticalFlowExt>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperRes_DualTVL1OpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperRes_FarnebackOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperRes_PyrLKOpticalFlow>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperRes_SuperResolution>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperpixelLSC>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperpixelSEEDS>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SuperpixelSLIC>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SwishLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, SyntheticSequenceGenerator>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TBMR>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TEBLID>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TanHLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TanLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ThinPlateSplineShapeTransformer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, ThresholdedReluLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TileLayer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, Tonemap>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TonemapDrago>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TonemapDurand>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TonemapMantiuk>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TonemapReinhard>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, TransientAreasSegmentationModule>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, VGG>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, VariationalRefinement>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlgorithmTraitConst for BoxedRef<'_, WhiteBalancer>

source§

fn as_raw_Algorithm(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>

Stores algorithm parameters in a file storage Read more
source§

fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>

@deprecated Read more
source§

fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>

👎Deprecated:

§Note

Deprecated: ## Note This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§

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<()>

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>

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 AlignExposuresTraitConst for BoxedRef<'_, AlignExposures>

source§

fn as_raw_AlignExposures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AlignExposuresTraitConst for BoxedRef<'_, AlignMTB>

source§

fn as_raw_AlignExposures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AlignMTBTraitConst for BoxedRef<'_, AlignMTB>

source§

fn as_raw_AlignMTB(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_bits(&self) -> Result<i32>

source§

fn get_exclude_range(&self) -> Result<i32>

source§

fn get_cut(&self) -> Result<bool>

source§

impl ArgLayerTraitConst for BoxedRef<'_, ArgLayer>

source§

fn as_raw_ArgLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ArraysTraitConst for BoxedRef<'_, Arrays>

source§

fn as_raw_Arrays(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn bind(&self) -> Result<()>

Binds all vertex arrays.
source§

fn size(&self) -> Result<i32>

Returns the vertex count.
source§

fn empty(&self) -> Result<bool>

source§

impl ArucoDetectorTraitConst for BoxedRef<'_, ArucoDetector>

source§

fn as_raw_ArucoDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect_markers( &self, image: &impl ToInputArray, corners: &mut impl ToOutputArray, ids: &mut impl ToOutputArray, rejected_img_points: &mut impl ToOutputArray ) -> Result<()>

Basic marker detection Read more
source§

fn detect_markers_def( &self, image: &impl ToInputArray, corners: &mut impl ToOutputArray, ids: &mut impl ToOutputArray ) -> Result<()>

Basic marker detection Read more
source§

fn refine_detected_markers( &self, image: &impl ToInputArray, board: &impl BoardTraitConst, detected_corners: &mut impl ToInputOutputArray, detected_ids: &mut impl ToInputOutputArray, rejected_corners: &mut impl ToInputOutputArray, camera_matrix: &impl ToInputArray, dist_coeffs: &impl ToInputArray, recovered_idxs: &mut impl ToOutputArray ) -> Result<()>

Refine not detected markers based on the already detected and the board layout Read more
source§

fn refine_detected_markers_def( &self, image: &impl ToInputArray, board: &impl BoardTraitConst, detected_corners: &mut impl ToInputOutputArray, detected_ids: &mut impl ToInputOutputArray, rejected_corners: &mut impl ToInputOutputArray ) -> Result<()>

Refine not detected markers based on the already detected and the board layout Read more
source§

fn get_dictionary(&self) -> Result<Dictionary>

source§

fn get_detector_parameters(&self) -> Result<DetectorParameters>

source§

fn get_refine_parameters(&self) -> Result<RefineParameters>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Stores algorithm parameters in a file storage
source§

impl AsinLayerTraitConst for BoxedRef<'_, AsinLayer>

source§

fn as_raw_AsinLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AsinhLayerTraitConst for BoxedRef<'_, AsinhLayer>

source§

fn as_raw_AsinhLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AsyncArrayTraitConst for BoxedRef<'_, AsyncArray>

source§

fn as_raw_AsyncArray(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get(&self, dst: &mut impl ToOutputArray) -> Result<()>

Fetch the result. Read more
source§

fn get_with_timeout( &self, dst: &mut impl ToOutputArray, timeout_ns: i64 ) -> Result<bool>

Retrieving the result with timeout Read more
source§

fn get_with_timeout_f64( &self, dst: &mut impl ToOutputArray, timeout_ns: f64 ) -> Result<bool>

source§

fn wait_for(&self, timeout_ns: i64) -> Result<bool>

source§

fn wait_for_f64(&self, timeout_ns: f64) -> Result<bool>

source§

fn valid(&self) -> bool

source§

impl AsyncPromiseTraitConst for BoxedRef<'_, AsyncPromise>

source§

fn as_raw_AsyncPromise(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn _get_impl(&self) -> *mut c_void

source§

impl AtanLayerTraitConst for BoxedRef<'_, AtanLayer>

source§

fn as_raw_AtanLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AtanhLayerTraitConst for BoxedRef<'_, AtanhLayer>

source§

fn as_raw_AtanhLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AttentionLayerTraitConst for BoxedRef<'_, AttentionLayer>

source§

fn as_raw_AttentionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AutotunedIndexParamsTraitConst for BoxedRef<'_, AutotunedIndexParams>

source§

fn as_raw_AutotunedIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl AverageHashTraitConst for BoxedRef<'_, AverageHash>

source§

fn as_raw_AverageHash(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BEBLIDTraitConst for BoxedRef<'_, BEBLID>

source§

fn as_raw_BEBLID(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale_factor(&self) -> Result<f32>

source§

fn get_default_name(&self) -> Result<String>

source§

impl BFMatcherTraitConst for BoxedRef<'_, BFMatcher>

source§

fn as_raw_BFMatcher(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_mask_supported(&self) -> Result<bool>

source§

fn clone(&self, empty_train_data: bool) -> Result<Ptr<DescriptorMatcher>>

C++ default parameters Read more
source§

fn clone_def(&self) -> Result<Ptr<DescriptorMatcher>>

source§

impl BIFTraitConst for BoxedRef<'_, BIF>

source§

fn as_raw_BIF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_bands(&self) -> Result<i32>

Returns Read more
source§

fn get_num_rotations(&self) -> Result<i32>

Returns Read more
source§

fn compute( &self, image: &impl ToInputArray, features: &mut impl ToOutputArray ) -> Result<()>

Computes features sby input image. Read more
source§

impl BNLLLayerTraitConst for BoxedRef<'_, BNLLLayer>

source§

fn as_raw_BNLLLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BOWImgDescriptorExtractorTraitConst for BoxedRef<'_, BOWImgDescriptorExtractor>

source§

fn as_raw_BOWImgDescriptorExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_vocabulary(&self) -> Result<Mat>

Returns the set vocabulary.
source§

fn descriptor_size(&self) -> Result<i32>

Returns an image descriptor size if the vocabulary is set. Otherwise, it returns 0.
source§

fn descriptor_type(&self) -> Result<i32>

Returns an image descriptor type.
source§

impl BOWKMeansTrainerTraitConst for BoxedRef<'_, BOWKMeansTrainer>

source§

fn as_raw_BOWKMeansTrainer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn cluster(&self) -> Result<Mat>

source§

fn cluster_with_descriptor( &self, descriptors: &impl MatTraitConst ) -> Result<Mat>

source§

impl BOWTrainerTraitConst for BoxedRef<'_, BOWKMeansTrainer>

source§

fn as_raw_BOWTrainer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_descriptors(&self) -> Result<Vector<Mat>>

Returns a training set of descriptors.
source§

fn descriptors_count(&self) -> Result<i32>

Returns the count of all descriptors stored in the training set.
source§

fn cluster(&self) -> Result<Mat>

Clusters train descriptors. Read more
source§

fn cluster_with_descriptors( &self, descriptors: &impl MatTraitConst ) -> Result<Mat>

Clusters train descriptors. Read more
source§

impl BOWTrainerTraitConst for BoxedRef<'_, BOWTrainer>

source§

fn as_raw_BOWTrainer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_descriptors(&self) -> Result<Vector<Mat>>

Returns a training set of descriptors.
source§

fn descriptors_count(&self) -> Result<i32>

Returns the count of all descriptors stored in the training set.
source§

fn cluster(&self) -> Result<Mat>

Clusters train descriptors. Read more
source§

fn cluster_with_descriptors( &self, descriptors: &impl MatTraitConst ) -> Result<Mat>

Clusters train descriptors. Read more
source§

impl BRISKTraitConst for BoxedRef<'_, BRISK>

source§

fn as_raw_BRISK(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_default_name(&self) -> Result<String>

source§

fn get_threshold(&self) -> Result<i32>

source§

fn get_octaves(&self) -> Result<i32>

source§

fn get_pattern_scale(&self) -> Result<f32>

source§

impl BackendNodeTraitConst for BoxedRef<'_, BackendNode>

source§

fn as_raw_BackendNode(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn backend_id(&self) -> i32

Backend identifier.
source§

impl BackendWrapperTraitConst for BoxedRef<'_, BackendWrapper>

source§

fn as_raw_BackendWrapper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn backend_id(&self) -> i32

Backend identifier.
source§

fn target_id(&self) -> i32

Target identifier.
source§

impl BackgroundSubtractorCNTTraitConst for BoxedRef<'_, BackgroundSubtractorCNT>

source§

fn as_raw_BackgroundSubtractorCNT( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

source§

fn get_min_pixel_stability(&self) -> Result<i32>

Returns number of frames with same pixel color to consider stable.
source§

fn get_max_pixel_stability(&self) -> Result<i32>

Returns maximum allowed credit for a pixel in history.
source§

fn get_use_history(&self) -> Result<bool>

Returns if we’re giving a pixel credit for being stable for a long time.
source§

fn get_is_parallel(&self) -> Result<bool>

Returns if we’re parallelizing the algorithm.
source§

impl BackgroundSubtractorGMGTraitConst for BoxedRef<'_, BackgroundSubtractorGMG>

source§

fn as_raw_BackgroundSubtractorGMG( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_features(&self) -> Result<i32>

Returns total number of distinct colors to maintain in histogram.
source§

fn get_default_learning_rate(&self) -> Result<f64>

Returns the learning rate of the algorithm. Read more
source§

fn get_num_frames(&self) -> Result<i32>

Returns the number of frames used to initialize background model.
source§

fn get_quantization_levels(&self) -> Result<i32>

Returns the parameter used for quantization of color-space. Read more
source§

fn get_background_prior(&self) -> Result<f64>

Returns the prior probability that each individual pixel is a background pixel.
source§

fn get_smoothing_radius(&self) -> Result<i32>

Returns the kernel radius used for morphological operations
source§

fn get_decision_threshold(&self) -> Result<f64>

Returns the value of decision threshold. Read more
source§

fn get_update_background_model(&self) -> Result<bool>

Returns the status of background model update
source§

fn get_min_val(&self) -> Result<f64>

Returns the minimum value taken on by pixels in image sequence. Usually 0.
source§

fn get_max_val(&self) -> Result<f64>

Returns the maximum value taken on by pixels in image sequence. e.g. 1.0 or 255.
source§

impl BackgroundSubtractorGSOCTraitConst for BoxedRef<'_, BackgroundSubtractorGSOC>

source§

fn as_raw_BackgroundSubtractorGSOC( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

source§

impl BackgroundSubtractorKNNTraitConst for BoxedRef<'_, BackgroundSubtractorKNN>

source§

fn as_raw_BackgroundSubtractorKNN( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_history(&self) -> Result<i32>

Returns the number of last frames that affect the background model
source§

fn get_n_samples(&self) -> Result<i32>

Returns the number of data samples in the background model
source§

fn get_dist2_threshold(&self) -> Result<f64>

Returns the threshold on the squared distance between the pixel and the sample Read more
source§

fn getk_nn_samples(&self) -> Result<i32>

Returns the number of neighbours, the k in the kNN. Read more
source§

fn get_detect_shadows(&self) -> Result<bool>

Returns the shadow detection flag Read more
source§

fn get_shadow_value(&self) -> Result<i32>

Returns the shadow value Read more
source§

fn get_shadow_threshold(&self) -> Result<f64>

Returns the shadow threshold Read more
source§

impl BackgroundSubtractorLSBPDescTraitConst for BoxedRef<'_, BackgroundSubtractorLSBPDesc>

source§

fn as_raw_BackgroundSubtractorLSBPDesc( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BackgroundSubtractorLSBPTraitConst for BoxedRef<'_, BackgroundSubtractorLSBP>

source§

fn as_raw_BackgroundSubtractorLSBP( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

source§

impl BackgroundSubtractorMOG2TraitConst for BoxedRef<'_, BackgroundSubtractorMOG2>

source§

fn as_raw_BackgroundSubtractorMOG2( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_history(&self) -> Result<i32>

Returns the number of last frames that affect the background model
source§

fn get_n_mixtures(&self) -> Result<i32>

Returns the number of gaussian components in the background model
source§

fn get_background_ratio(&self) -> Result<f64>

Returns the “background ratio” parameter of the algorithm Read more
source§

fn get_var_threshold(&self) -> Result<f64>

Returns the variance threshold for the pixel-model match Read more
source§

fn get_var_threshold_gen(&self) -> Result<f64>

Returns the variance threshold for the pixel-model match used for new mixture component generation Read more
source§

fn get_var_init(&self) -> Result<f64>

Returns the initial variance of each gaussian component
source§

fn get_var_min(&self) -> Result<f64>

source§

fn get_var_max(&self) -> Result<f64>

source§

fn get_complexity_reduction_threshold(&self) -> Result<f64>

Returns the complexity reduction threshold Read more
source§

fn get_detect_shadows(&self) -> Result<bool>

Returns the shadow detection flag Read more
source§

fn get_shadow_value(&self) -> Result<i32>

Returns the shadow value Read more
source§

fn get_shadow_threshold(&self) -> Result<f64>

Returns the shadow threshold Read more
source§

impl BackgroundSubtractorMOG2TraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG2>

source§

fn as_raw_BackgroundSubtractorMOG2( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_history(&self) -> Result<i32>

Returns the number of last frames that affect the background model
source§

fn get_n_mixtures(&self) -> Result<i32>

Returns the number of gaussian components in the background model
source§

fn get_background_ratio(&self) -> Result<f64>

Returns the “background ratio” parameter of the algorithm Read more
source§

fn get_var_threshold(&self) -> Result<f64>

Returns the variance threshold for the pixel-model match Read more
source§

fn get_var_threshold_gen(&self) -> Result<f64>

Returns the variance threshold for the pixel-model match used for new mixture component generation Read more
source§

fn get_var_init(&self) -> Result<f64>

Returns the initial variance of each gaussian component
source§

fn get_var_min(&self) -> Result<f64>

source§

fn get_var_max(&self) -> Result<f64>

source§

fn get_complexity_reduction_threshold(&self) -> Result<f64>

Returns the complexity reduction threshold Read more
source§

fn get_detect_shadows(&self) -> Result<bool>

Returns the shadow detection flag Read more
source§

fn get_shadow_value(&self) -> Result<i32>

Returns the shadow value Read more
source§

fn get_shadow_threshold(&self) -> Result<f64>

Returns the shadow threshold Read more
source§

impl BackgroundSubtractorMOGTraitConst for BoxedRef<'_, BackgroundSubtractorMOG>

source§

fn as_raw_BackgroundSubtractorMOG( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_history(&self) -> Result<i32>

source§

fn get_n_mixtures(&self) -> Result<i32>

source§

fn get_background_ratio(&self) -> Result<f64>

source§

fn get_noise_sigma(&self) -> Result<f64>

source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractor>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorCNT>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorGMG>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorGSOC>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorKNN>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorLSBP>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorMOG>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, BackgroundSubtractorMOG2>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BackgroundSubtractorTraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG2>

source§

fn as_raw_BackgroundSubtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray ) -> Result<()>

Computes a background image. Read more
source§

impl BarcodeDetectorTraitConst for BoxedRef<'_, BarcodeDetector>

source§

fn as_raw_BarcodeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn decode_with_type( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String>, decoded_type: &mut Vector<String> ) -> Result<bool>

Decodes barcode in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode_with_type( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, decoded_type: &mut Vector<String>, points: &mut impl ToOutputArray ) -> Result<bool>

Both detects and decodes barcode Read more
source§

fn detect_and_decode_with_type_def( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, decoded_type: &mut Vector<String> ) -> Result<bool>

Both detects and decodes barcode Read more
source§

impl BaseCascadeClassifierTraitConst for BoxedRef<'_, BaseCascadeClassifier>

source§

fn as_raw_BaseCascadeClassifier( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

source§

fn is_old_format_cascade(&self) -> Result<bool>

source§

fn get_original_window_size(&self) -> Result<Size>

source§

fn get_feature_type(&self) -> Result<i32>

source§

impl BaseCascadeClassifier_MaskGeneratorTraitConst for BoxedRef<'_, BaseCascadeClassifier_MaskGenerator>

source§

fn as_raw_BaseCascadeClassifier_MaskGenerator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BaseConvolutionLayerTraitConst for BoxedRef<'_, BaseConvolutionLayer>

source§

fn as_raw_BaseConvolutionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn kernel(&self) -> Size

source§

fn stride(&self) -> Size

source§

fn pad(&self) -> Size

source§

fn dilation(&self) -> Size

source§

fn adjust_pad(&self) -> Size

source§

fn adjust_pads(&self) -> Vector<size_t>

source§

fn kernel_size(&self) -> Vector<size_t>

source§

fn strides(&self) -> Vector<size_t>

source§

fn dilations(&self) -> Vector<size_t>

source§

fn pads_begin(&self) -> Vector<size_t>

source§

fn pads_end(&self) -> Vector<size_t>

source§

fn pad_mode(&self) -> String

source§

fn num_output(&self) -> i32

source§

impl BaseConvolutionLayerTraitConst for BoxedRef<'_, ConvolutionLayer>

source§

fn as_raw_BaseConvolutionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn kernel(&self) -> Size

source§

fn stride(&self) -> Size

source§

fn pad(&self) -> Size

source§

fn dilation(&self) -> Size

source§

fn adjust_pad(&self) -> Size

source§

fn adjust_pads(&self) -> Vector<size_t>

source§

fn kernel_size(&self) -> Vector<size_t>

source§

fn strides(&self) -> Vector<size_t>

source§

fn dilations(&self) -> Vector<size_t>

source§

fn pads_begin(&self) -> Vector<size_t>

source§

fn pads_end(&self) -> Vector<size_t>

source§

fn pad_mode(&self) -> String

source§

fn num_output(&self) -> i32

source§

impl BaseConvolutionLayerTraitConst for BoxedRef<'_, ConvolutionLayerInt8>

source§

fn as_raw_BaseConvolutionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn kernel(&self) -> Size

source§

fn stride(&self) -> Size

source§

fn pad(&self) -> Size

source§

fn dilation(&self) -> Size

source§

fn adjust_pad(&self) -> Size

source§

fn adjust_pads(&self) -> Vector<size_t>

source§

fn kernel_size(&self) -> Vector<size_t>

source§

fn strides(&self) -> Vector<size_t>

source§

fn dilations(&self) -> Vector<size_t>

source§

fn pads_begin(&self) -> Vector<size_t>

source§

fn pads_end(&self) -> Vector<size_t>

source§

fn pad_mode(&self) -> String

source§

fn num_output(&self) -> i32

source§

impl BaseConvolutionLayerTraitConst for BoxedRef<'_, DeconvolutionLayer>

source§

fn as_raw_BaseConvolutionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn kernel(&self) -> Size

source§

fn stride(&self) -> Size

source§

fn pad(&self) -> Size

source§

fn dilation(&self) -> Size

source§

fn adjust_pad(&self) -> Size

source§

fn adjust_pads(&self) -> Vector<size_t>

source§

fn kernel_size(&self) -> Vector<size_t>

source§

fn strides(&self) -> Vector<size_t>

source§

fn dilations(&self) -> Vector<size_t>

source§

fn pads_begin(&self) -> Vector<size_t>

source§

fn pads_end(&self) -> Vector<size_t>

source§

fn pad_mode(&self) -> String

source§

fn num_output(&self) -> i32

source§

impl BaseOCRTraitConst for BoxedRef<'_, BaseOCR>

source§

fn as_raw_BaseOCR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BaseOCRTraitConst for BoxedRef<'_, OCRBeamSearchDecoder>

source§

fn as_raw_BaseOCR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BaseOCRTraitConst for BoxedRef<'_, OCRHMMDecoder>

source§

fn as_raw_BaseOCR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BaseOCRTraitConst for BoxedRef<'_, OCRHolisticWordRecognizer>

source§

fn as_raw_BaseOCR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BaseOCRTraitConst for BoxedRef<'_, OCRTesseract>

source§

fn as_raw_BaseOCR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BaseSFMTraitConst for BoxedRef<'_, BaseSFM>

source§

fn as_raw_BaseSFM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_error(&self) -> Result<f64>

source§

fn get_intrinsics(&self) -> Result<Mat>

source§

impl BaseSFMTraitConst for BoxedRef<'_, SFMLibmvEuclideanReconstruction>

source§

fn as_raw_BaseSFM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_error(&self) -> Result<f64>

source§

fn get_intrinsics(&self) -> Result<Mat>

source§

impl BasicFaceRecognizerTraitConst for BoxedRef<'_, BasicFaceRecognizer>

source§

fn as_raw_BasicFaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_components(&self) -> Result<i32>

See also Read more
source§

fn get_threshold(&self) -> Result<f64>

See also Read more
source§

fn get_projections(&self) -> Result<Vector<Mat>>

source§

fn get_labels(&self) -> Result<Mat>

source§

fn get_eigen_values(&self) -> Result<Mat>

source§

fn get_eigen_vectors(&self) -> Result<Mat>

source§

fn get_mean(&self) -> Result<Mat>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

source§

impl BasicFaceRecognizerTraitConst for BoxedRef<'_, EigenFaceRecognizer>

source§

fn as_raw_BasicFaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_components(&self) -> Result<i32>

See also Read more
source§

fn get_threshold(&self) -> Result<f64>

See also Read more
source§

fn get_projections(&self) -> Result<Vector<Mat>>

source§

fn get_labels(&self) -> Result<Mat>

source§

fn get_eigen_values(&self) -> Result<Mat>

source§

fn get_eigen_vectors(&self) -> Result<Mat>

source§

fn get_mean(&self) -> Result<Mat>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

source§

impl BasicFaceRecognizerTraitConst for BoxedRef<'_, FisherFaceRecognizer>

source§

fn as_raw_BasicFaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_components(&self) -> Result<i32>

See also Read more
source§

fn get_threshold(&self) -> Result<f64>

See also Read more
source§

fn get_projections(&self) -> Result<Vector<Mat>>

source§

fn get_labels(&self) -> Result<Mat>

source§

fn get_eigen_values(&self) -> Result<Mat>

source§

fn get_eigen_vectors(&self) -> Result<Mat>

source§

fn get_mean(&self) -> Result<Mat>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

source§

impl BatchNormLayerInt8TraitConst for BoxedRef<'_, BatchNormLayerInt8>

source§

fn as_raw_BatchNormLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn input_sc(&self) -> f32

source§

fn output_sc(&self) -> f32

source§

fn input_zp(&self) -> i32

source§

fn output_zp(&self) -> i32

source§

impl BatchNormLayerTraitConst for BoxedRef<'_, BatchNormLayer>

source§

fn as_raw_BatchNormLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has_weights(&self) -> bool

source§

fn has_bias(&self) -> bool

source§

fn epsilon(&self) -> f32

source§

impl BatchNormLayerTraitConst for BoxedRef<'_, BatchNormLayerInt8>

source§

fn as_raw_BatchNormLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has_weights(&self) -> bool

source§

fn has_bias(&self) -> bool

source§

fn epsilon(&self) -> f32

source§

impl BinaryDescriptorMatcherTraitConst for BoxedRef<'_, BinaryDescriptorMatcher>

source§

fn as_raw_BinaryDescriptorMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn match_( &self, query_descriptors: &impl MatTraitConst, train_descriptors: &impl MatTraitConst, matches: &mut Vector<DMatch>, mask: &impl MatTraitConst ) -> Result<()>

For every input query descriptor, retrieve the best matching one from a dataset provided from user or from the one internal to class Read more
source§

fn match__def( &self, query_descriptors: &impl MatTraitConst, train_descriptors: &impl MatTraitConst, matches: &mut Vector<DMatch> ) -> Result<()>

For every input query descriptor, retrieve the best matching one from a dataset provided from user or from the one internal to class Read more
source§

fn knn_match( &self, query_descriptors: &impl MatTraitConst, train_descriptors: &impl MatTraitConst, matches: &mut Vector<Vector<DMatch>>, k: i32, mask: &impl MatTraitConst, compact_result: bool ) -> Result<()>

For every input query descriptor, retrieve the best k matching ones from a dataset provided from user or from the one internal to class Read more
source§

fn knn_match_def( &self, query_descriptors: &impl MatTraitConst, train_descriptors: &impl MatTraitConst, matches: &mut Vector<Vector<DMatch>>, k: i32 ) -> Result<()>

For every input query descriptor, retrieve the best k matching ones from a dataset provided from user or from the one internal to class Read more
source§

fn radius_match( &self, query_descriptors: &impl MatTraitConst, train_descriptors: &impl MatTraitConst, matches: &mut Vector<Vector<DMatch>>, max_distance: f32, mask: &impl MatTraitConst, compact_result: bool ) -> Result<()>

For every input query descriptor, retrieve, from a dataset provided from user or from the one internal to class, all the descriptors that are not further than maxDist from input query Read more
source§

fn radius_match_def( &self, query_descriptors: &impl MatTraitConst, train_descriptors: &impl MatTraitConst, matches: &mut Vector<Vector<DMatch>>, max_distance: f32 ) -> Result<()>

For every input query descriptor, retrieve, from a dataset provided from user or from the one internal to class, all the descriptors that are not further than maxDist from input query Read more
source§

impl BinaryDescriptorTraitConst for BoxedRef<'_, BinaryDescriptor>

source§

fn as_raw_BinaryDescriptor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Store parameters to a FileStorage object Read more
source§

fn detect( &self, images: &Vector<Mat>, keylines: &mut Vector<Vector<KeyLine>>, masks: &Vector<Mat> ) -> Result<()>

Requires line detection Read more
source§

fn detect_def( &self, images: &Vector<Mat>, keylines: &mut Vector<Vector<KeyLine>> ) -> Result<()>

@overload Read more
source§

fn compute( &self, image: &impl MatTraitConst, keylines: &mut Vector<KeyLine>, descriptors: &mut impl MatTrait, return_float_descr: bool ) -> Result<()>

Requires descriptors computation Read more
source§

fn compute_def( &self, image: &impl MatTraitConst, keylines: &mut Vector<KeyLine>, descriptors: &mut impl MatTrait ) -> Result<()>

Requires descriptors computation Read more
source§

fn compute_1( &self, images: &Vector<Mat>, keylines: &mut Vector<Vector<KeyLine>>, descriptors: &mut Vector<Mat>, return_float_descr: bool ) -> Result<()>

Requires descriptors computation Read more
source§

fn compute_def_1( &self, images: &Vector<Mat>, keylines: &mut Vector<Vector<KeyLine>>, descriptors: &mut Vector<Mat> ) -> Result<()>

@overload Read more
source§

fn descriptor_size(&self) -> Result<i32>

Return descriptor size
source§

fn descriptor_type(&self) -> Result<i32>

Return data type
source§

fn default_norm(&self) -> Result<i32>

returns norm mode
source§

fn apply( &self, image: &impl ToInputArray, mask: &impl ToInputArray, keylines: &mut Vector<KeyLine>, descriptors: &mut impl ToOutputArray, use_provided_key_lines: bool, return_float_descr: bool ) -> Result<()>

Define operator ‘()’ to perform detection of KeyLines and computation of descriptors in a row. Read more
source§

fn apply_def( &self, image: &impl ToInputArray, mask: &impl ToInputArray, keylines: &mut Vector<KeyLine>, descriptors: &mut impl ToOutputArray ) -> Result<()>

Define operator ‘()’ to perform detection of KeyLines and computation of descriptors in a row. Read more
source§

impl BinaryDescriptor_ParamsTraitConst for BoxedRef<'_, BinaryDescriptor_Params>

source§

fn as_raw_BinaryDescriptor_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn num_of_octave_(&self) -> i32

the number of image octaves (default = 1)
source§

fn width_of_band_(&self) -> i32

the width of band; (default: 7)
source§

fn reduction_ratio(&self) -> i32

image’s reduction ratio in construction of Gaussian pyramids
source§

fn ksize_(&self) -> i32

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

store parameters to a FileStorage object (struct function)
source§

impl BlankLayerTraitConst for BoxedRef<'_, BlankLayer>

source§

fn as_raw_BlankLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl BlockMeanHashTraitConst for BoxedRef<'_, BlockMeanHash>

source§

fn as_raw_BlockMeanHash( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_mean(&self) -> Result<Vector<f64>>

source§

impl BoardTraitConst for BoxedRef<'_, Board>

source§

fn as_raw_Board(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_dictionary(&self) -> Result<Dictionary>

return the Dictionary of markers employed for this board
source§

fn get_obj_points(&self) -> Result<Vector<Vector<Point3f>>>

return array of object points of all the marker corners in the board. Read more
source§

fn get_ids(&self) -> Result<Vector<i32>>

vector of the identifiers of the markers in the board (should be the same size as objPoints) Read more
source§

fn get_right_bottom_corner(&self) -> Result<Point3f>

get coordinate of the bottom right corner of the board, is set when calling the function create()
source§

fn match_image_points( &self, detected_corners: &impl ToInputArray, detected_ids: &impl ToInputArray, obj_points: &mut impl ToOutputArray, img_points: &mut impl ToOutputArray ) -> Result<()>

Given a board configuration and a set of detected markers, returns the corresponding image points and object points, can be used in solvePnP() Read more
source§

fn generate_image( &self, out_size: Size, img: &mut impl ToOutputArray, margin_size: i32, border_bits: i32 ) -> Result<()>

Draw a planar board Read more
source§

fn generate_image_def( &self, out_size: Size, img: &mut impl ToOutputArray ) -> Result<()>

Draw a planar board Read more
source§

impl BoardTraitConst for BoxedRef<'_, CharucoBoard>

source§

fn as_raw_Board(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_dictionary(&self) -> Result<Dictionary>

return the Dictionary of markers employed for this board
source§

fn get_obj_points(&self) -> Result<Vector<Vector<Point3f>>>

return array of object points of all the marker corners in the board. Read more
source§

fn get_ids(&self) -> Result<Vector<i32>>

vector of the identifiers of the markers in the board (should be the same size as objPoints) Read more
source§

fn get_right_bottom_corner(&self) -> Result<Point3f>

get coordinate of the bottom right corner of the board, is set when calling the function create()
source§

fn match_image_points( &self, detected_corners: &impl ToInputArray, detected_ids: &impl ToInputArray, obj_points: &mut impl ToOutputArray, img_points: &mut impl ToOutputArray ) -> Result<()>

Given a board configuration and a set of detected markers, returns the corresponding image points and object points, can be used in solvePnP() Read more
source§

fn generate_image( &self, out_size: Size, img: &mut impl ToOutputArray, margin_size: i32, border_bits: i32 ) -> Result<()>

Draw a planar board Read more
source§

fn generate_image_def( &self, out_size: Size, img: &mut impl ToOutputArray ) -> Result<()>

Draw a planar board Read more
source§

impl BoardTraitConst for BoxedRef<'_, GridBoard>

source§

fn as_raw_Board(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_dictionary(&self) -> Result<Dictionary>

return the Dictionary of markers employed for this board
source§

fn get_obj_points(&self) -> Result<Vector<Vector<Point3f>>>

return array of object points of all the marker corners in the board. Read more
source§

fn get_ids(&self) -> Result<Vector<i32>>

vector of the identifiers of the markers in the board (should be the same size as objPoints) Read more
source§

fn get_right_bottom_corner(&self) -> Result<Point3f>

get coordinate of the bottom right corner of the board, is set when calling the function create()
source§

fn match_image_points( &self, detected_corners: &impl ToInputArray, detected_ids: &impl ToInputArray, obj_points: &mut impl ToOutputArray, img_points: &mut impl ToOutputArray ) -> Result<()>

Given a board configuration and a set of detected markers, returns the corresponding image points and object points, can be used in solvePnP() Read more
source§

fn generate_image( &self, out_size: Size, img: &mut impl ToOutputArray, margin_size: i32, border_bits: i32 ) -> Result<()>

Draw a planar board Read more
source§

fn generate_image_def( &self, out_size: Size, img: &mut impl ToOutputArray ) -> Result<()>

Draw a planar board Read more
source§

impl BoostDescTraitConst for BoxedRef<'_, BoostDesc>

source§

fn as_raw_BoostDesc(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_default_name(&self) -> Result<String>

source§

fn get_use_scale_orientation(&self) -> Result<bool>

source§

fn get_scale_factor(&self) -> Result<f32>

source§

impl BoostTraitConst for BoxedRef<'_, Boost>

source§

fn as_raw_Boost(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_boost_type(&self) -> Result<i32>

Type of the boosting algorithm. See Boost::Types. Default value is Boost::REAL. Read more
source§

fn get_weak_count(&self) -> Result<i32>

The number of weak classifiers. Default value is 100. Read more
source§

fn get_weight_trim_rate(&self) -> Result<f64>

A threshold between 0 and 1 used to save computational time. Samples with summary weight inline formula do not participate in the next iteration of training. Set this parameter to 0 to turn off this functionality. Default value is 0.95. Read more
source§

impl BriefDescriptorExtractorTraitConst for BoxedRef<'_, BriefDescriptorExtractor>

source§

fn as_raw_BriefDescriptorExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_descriptor_size(&self) -> Result<i32>

source§

fn get_use_orientation(&self) -> Result<bool>

source§

fn get_default_name(&self) -> Result<String>

source§

impl BufferPoolTraitConst for BoxedRef<'_, BufferPool>

source§

fn as_raw_BufferPool(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_allocator(&self) -> Result<Ptr<GpuMat_Allocator>>

Returns the allocator associated with the stream.
source§

impl BufferTraitConst for BoxedRef<'_, Buffer>

source§

fn as_raw_Buffer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn copy_to(&self, arr: &mut impl ToOutputArray) -> Result<()>

Copies from OpenGL buffer to host/device memory or another OpenGL buffer object. Read more
source§

fn copy_to_1( &self, arr: &mut impl ToOutputArray, stream: &mut impl StreamTrait ) -> Result<()>

Copies from OpenGL buffer to host/device memory or another OpenGL buffer object. Read more
source§

fn clone(&self, target: Buffer_Target, auto_release: bool) -> Result<Buffer>

Creates a full copy of the buffer object and the underlying data. Read more
source§

fn clone_def(&self) -> Result<Buffer>

Creates a full copy of the buffer object and the underlying data. Read more
source§

fn bind(&self, target: Buffer_Target) -> Result<()>

Binds OpenGL buffer to the specified buffer binding point. Read more
source§

fn rows(&self) -> Result<i32>

source§

fn cols(&self) -> Result<i32>

source§

fn size(&self) -> Result<Size>

source§

fn empty(&self) -> Result<bool>

source§

fn typ(&self) -> Result<i32>

source§

fn depth(&self) -> Result<i32>

source§

fn channels(&self) -> Result<i32>

source§

fn elem_size(&self) -> Result<i32>

source§

fn elem_size1(&self) -> Result<i32>

source§

fn buf_id(&self) -> Result<u32>

get OpenGL opject id
source§

impl CLAHETraitConst for BoxedRef<'_, CLAHE>

source§

fn as_raw_CLAHE(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_clip_limit(&self) -> Result<f64>

Returns threshold value for contrast limiting.
source§

fn get_tiles_grid_size(&self) -> Result<Size>

Returns Size defines the number of tiles in row and column.
source§

impl CLAHETraitConst for BoxedRef<'_, CUDA_CLAHE>

source§

fn as_raw_CLAHE(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_clip_limit(&self) -> Result<f64>

Returns threshold value for contrast limiting.
source§

fn get_tiles_grid_size(&self) -> Result<Size>

Returns Size defines the number of tiles in row and column.
source§

impl CParamsTraitConst for BoxedRef<'_, CParams>

source§

fn as_raw_CParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn cascade(&self) -> String

the face detector
source§

fn scale_factor(&self) -> f64

Parameter specifying how much the image size is reduced at each image scale.
source§

fn min_neighbors(&self) -> i32

Parameter specifying how many neighbors each candidate rectangle should have to retain it.
source§

fn min_size(&self) -> Size

Minimum possible object size.
source§

fn max_size(&self) -> Size

Maximum possible object size.
source§

fn face_cascade(&self) -> CascadeClassifier

source§

impl CUDA_BackgroundSubtractorMOG2TraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG2>

source§

fn as_raw_CUDA_BackgroundSubtractorMOG2( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray, stream: &mut impl StreamTrait ) -> Result<()>

source§

impl CUDA_BackgroundSubtractorMOGTraitConst for BoxedRef<'_, CUDA_BackgroundSubtractorMOG>

source§

fn as_raw_CUDA_BackgroundSubtractorMOG( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_background_image( &self, background_image: &mut impl ToOutputArray, stream: &mut impl StreamTrait ) -> Result<()>

source§

fn get_history(&self) -> Result<i32>

source§

fn get_n_mixtures(&self) -> Result<i32>

source§

fn get_background_ratio(&self) -> Result<f64>

source§

fn get_noise_sigma(&self) -> Result<f64>

source§

impl CUDA_BroxOpticalFlowTraitConst for BoxedRef<'_, CUDA_BroxOpticalFlow>

source§

fn as_raw_CUDA_BroxOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_flow_smoothness(&self) -> Result<f64>

source§

fn get_gradient_constancy_importance(&self) -> Result<f64>

source§

fn get_pyramid_scale_factor(&self) -> Result<f64>

source§

fn get_inner_iterations(&self) -> Result<i32>

number of lagged non-linearity iterations (inner loop)
source§

fn get_outer_iterations(&self) -> Result<i32>

number of warping iterations (number of pyramid levels)
source§

fn get_solver_iterations(&self) -> Result<i32>

number of linear system solver iterations
source§

impl CUDA_CLAHETraitConst for BoxedRef<'_, CUDA_CLAHE>

source§

fn as_raw_CUDA_CLAHE(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_CannyEdgeDetectorTraitConst for BoxedRef<'_, CUDA_CannyEdgeDetector>

source§

fn as_raw_CUDA_CannyEdgeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_low_threshold(&self) -> Result<f64>

source§

fn get_high_threshold(&self) -> Result<f64>

source§

fn get_apperture_size(&self) -> Result<i32>

source§

fn get_l2_gradient(&self) -> Result<bool>

source§

impl CUDA_CascadeClassifierTraitConst for BoxedRef<'_, CUDA_CascadeClassifier>

source§

impl CUDA_CornernessCriteriaTraitConst for BoxedRef<'_, CUDA_CornernessCriteria>

source§

fn as_raw_CUDA_CornernessCriteria( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_CornersDetectorTraitConst for BoxedRef<'_, CUDA_CornersDetector>

source§

fn as_raw_CUDA_CornersDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_DenseOpticalFlowTraitConst for BoxedRef<'_, CUDA_BroxOpticalFlow>

source§

fn as_raw_CUDA_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_DenseOpticalFlowTraitConst for BoxedRef<'_, CUDA_DenseOpticalFlow>

source§

fn as_raw_CUDA_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_DenseOpticalFlowTraitConst for BoxedRef<'_, CUDA_DensePyrLKOpticalFlow>

source§

fn as_raw_CUDA_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_DenseOpticalFlowTraitConst for BoxedRef<'_, CUDA_FarnebackOpticalFlow>

source§

fn as_raw_CUDA_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_DenseOpticalFlowTraitConst for BoxedRef<'_, CUDA_OpticalFlowDual_TVL1>

source§

fn as_raw_CUDA_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_DensePyrLKOpticalFlowTraitConst for BoxedRef<'_, CUDA_DensePyrLKOpticalFlow>

source§

fn as_raw_CUDA_DensePyrLKOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_win_size(&self) -> Result<Size>

source§

fn get_max_level(&self) -> Result<i32>

source§

fn get_num_iters(&self) -> Result<i32>

source§

fn get_use_initial_flow(&self) -> Result<bool>

source§

impl CUDA_DescriptorMatcherTraitConst for BoxedRef<'_, CUDA_DescriptorMatcher>

source§

fn as_raw_CUDA_DescriptorMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_mask_supported(&self) -> Result<bool>

Returns true if the descriptor matcher supports masking permissible matches.
source§

fn get_train_descriptors(&self) -> Result<Vector<GpuMat>>

Returns a constant link to the train descriptor collection.
source§

fn empty(&self) -> Result<bool>

Returns true if there are no train descriptors in the collection.
source§

impl CUDA_DisparityBilateralFilterTraitConst for BoxedRef<'_, CUDA_DisparityBilateralFilter>

source§

fn as_raw_CUDA_DisparityBilateralFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_disparities(&self) -> Result<i32>

source§

fn get_radius(&self) -> Result<i32>

source§

fn get_num_iters(&self) -> Result<i32>

source§

fn get_edge_threshold(&self) -> Result<f64>

truncation of data continuity
source§

fn get_max_disc_threshold(&self) -> Result<f64>

truncation of disparity continuity
source§

fn get_sigma_range(&self) -> Result<f64>

filter range sigma
source§

impl CUDA_EncoderCallbackTraitConst for BoxedRef<'_, CUDA_EncoderCallback>

source§

fn as_raw_CUDA_EncoderCallback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_FarnebackOpticalFlowTraitConst for BoxedRef<'_, CUDA_FarnebackOpticalFlow>

source§

fn as_raw_CUDA_FarnebackOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_levels(&self) -> Result<i32>

source§

fn get_pyr_scale(&self) -> Result<f64>

source§

fn get_fast_pyramids(&self) -> Result<bool>

source§

fn get_win_size(&self) -> Result<i32>

source§

fn get_num_iters(&self) -> Result<i32>

source§

fn get_poly_n(&self) -> Result<i32>

source§

fn get_poly_sigma(&self) -> Result<f64>

source§

fn get_flags(&self) -> Result<i32>

source§

impl CUDA_FastFeatureDetectorTraitConst for BoxedRef<'_, CUDA_FastFeatureDetector>

source§

fn as_raw_CUDA_FastFeatureDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_num_points(&self) -> Result<i32>

source§

impl CUDA_Feature2DAsyncTraitConst for BoxedRef<'_, CUDA_FastFeatureDetector>

source§

fn as_raw_CUDA_Feature2DAsync( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_Feature2DAsyncTraitConst for BoxedRef<'_, CUDA_Feature2DAsync>

source§

fn as_raw_CUDA_Feature2DAsync( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_Feature2DAsyncTraitConst for BoxedRef<'_, CUDA_ORB>

source§

fn as_raw_CUDA_Feature2DAsync( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_HOGTraitConst for BoxedRef<'_, CUDA_HOG>

source§

fn as_raw_CUDA_HOG(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_win_sigma(&self) -> Result<f64>

source§

fn get_l2_hys_threshold(&self) -> Result<f64>

source§

fn get_gamma_correction(&self) -> Result<bool>

source§

fn get_num_levels(&self) -> Result<i32>

source§

fn get_hit_threshold(&self) -> Result<f64>

source§

fn get_win_stride(&self) -> Result<Size>

source§

fn get_scale_factor(&self) -> Result<f64>

source§

fn get_group_threshold(&self) -> Result<i32>

source§

fn get_descriptor_format(&self) -> Result<HOGDescriptor_DescriptorStorageFormat>

source§

fn get_descriptor_size(&self) -> Result<size_t>

Returns the number of coefficients required for the classification.
source§

fn get_block_histogram_size(&self) -> Result<size_t>

Returns the block histogram size.
source§

fn get_default_people_detector(&self) -> Result<Mat>

Returns coefficients of the classifier trained for people detection.
source§

impl CUDA_HoughCirclesDetectorTraitConst for BoxedRef<'_, CUDA_HoughCirclesDetector>

source§

fn as_raw_CUDA_HoughCirclesDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_dp(&self) -> Result<f32>

source§

fn get_min_dist(&self) -> Result<f32>

source§

fn get_canny_threshold(&self) -> Result<i32>

source§

fn get_votes_threshold(&self) -> Result<i32>

source§

fn get_min_radius(&self) -> Result<i32>

source§

fn get_max_radius(&self) -> Result<i32>

source§

fn get_max_circles(&self) -> Result<i32>

source§

impl CUDA_HoughLinesDetectorTraitConst for BoxedRef<'_, CUDA_HoughLinesDetector>

source§

fn as_raw_CUDA_HoughLinesDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rho(&self) -> Result<f32>

source§

fn get_theta(&self) -> Result<f32>

source§

fn get_threshold(&self) -> Result<i32>

source§

fn get_do_sort(&self) -> Result<bool>

source§

fn get_max_lines(&self) -> Result<i32>

source§

impl CUDA_HoughSegmentDetectorTraitConst for BoxedRef<'_, CUDA_HoughSegmentDetector>

source§

fn as_raw_CUDA_HoughSegmentDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rho(&self) -> Result<f32>

source§

fn get_theta(&self) -> Result<f32>

source§

fn get_min_line_length(&self) -> Result<i32>

source§

fn get_max_line_gap(&self) -> Result<i32>

source§

fn get_max_lines(&self) -> Result<i32>

source§

fn get_threshold(&self) -> Result<i32>

source§

impl CUDA_NvidiaHWOpticalFlowTraitConst for BoxedRef<'_, CUDA_NvidiaHWOpticalFlow>

source§

fn as_raw_CUDA_NvidiaHWOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_grid_size(&self) -> Result<i32>

Returns grid size of output buffer as per the hardware’s capability.
source§

impl CUDA_NvidiaHWOpticalFlowTraitConst for BoxedRef<'_, CUDA_NvidiaOpticalFlow_1_0>

source§

fn as_raw_CUDA_NvidiaHWOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_grid_size(&self) -> Result<i32>

Returns grid size of output buffer as per the hardware’s capability.
source§

impl CUDA_NvidiaHWOpticalFlowTraitConst for BoxedRef<'_, CUDA_NvidiaOpticalFlow_2_0>

source§

fn as_raw_CUDA_NvidiaHWOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_grid_size(&self) -> Result<i32>

Returns grid size of output buffer as per the hardware’s capability.
source§

impl CUDA_NvidiaOpticalFlow_1_0TraitConst for BoxedRef<'_, CUDA_NvidiaOpticalFlow_1_0>

source§

fn as_raw_CUDA_NvidiaOpticalFlow_1_0( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_NvidiaOpticalFlow_2_0TraitConst for BoxedRef<'_, CUDA_NvidiaOpticalFlow_2_0>

source§

fn as_raw_CUDA_NvidiaOpticalFlow_2_0( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_ORBTraitConst for BoxedRef<'_, CUDA_ORB>

source§

impl CUDA_OpticalFlowDual_TVL1TraitConst for BoxedRef<'_, CUDA_OpticalFlowDual_TVL1>

source§

fn as_raw_CUDA_OpticalFlowDual_TVL1( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_tau(&self) -> Result<f64>

Time step of the numerical scheme.
source§

fn get_lambda(&self) -> Result<f64>

Weight parameter for the data term, attachment parameter. This is the most relevant parameter, which determines the smoothness of the output. The smaller this parameter is, the smoother the solutions we obtain. It depends on the range of motions of the images, so its value should be adapted to each image sequence.
source§

fn get_gamma(&self) -> Result<f64>

Weight parameter for (u - v)^2, tightness parameter. It serves as a link between the attachment and the regularization terms. In theory, it should have a small value in order to maintain both parts in correspondence. The method is stable for a large range of values of this parameter.
source§

fn get_theta(&self) -> Result<f64>

parameter used for motion estimation. It adds a variable allowing for illumination variations Set this parameter to 1. if you have varying illumination. See: Chambolle et al, A First-Order Primal-Dual Algorithm for Convex Problems with Applications to Imaging Journal of Mathematical imaging and vision, may 2011 Vol 40 issue 1, pp 120-145
source§

fn get_num_scales(&self) -> Result<i32>

Number of scales used to create the pyramid of images.
source§

fn get_num_warps(&self) -> Result<i32>

Number of warpings per scale. Represents the number of times that I1(x+u0) and grad( I1(x+u0) ) are computed per scale. This is a parameter that assures the stability of the method. It also affects the running time, so it is a compromise between speed and accuracy.
source§

fn get_epsilon(&self) -> Result<f64>

Stopping criterion threshold used in the numerical scheme, which is a trade-off between precision and running time. A small value will yield more accurate solutions at the expense of a slower convergence.
source§

fn get_num_iterations(&self) -> Result<i32>

Stopping criterion iterations number used in the numerical scheme.
source§

fn get_scale_step(&self) -> Result<f64>

source§

fn get_use_initial_flow(&self) -> Result<bool>

source§

impl CUDA_RawVideoSourceTraitConst for BoxedRef<'_, CUDA_RawVideoSource>

source§

fn as_raw_CUDA_RawVideoSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn last_packet_contains_key_frame(&self) -> Result<bool>

Returns true if the last packet contained a key frame.
source§

fn format(&self) -> Result<CUDA_FormatInfo>

Returns information about video file format.
source§

fn get_extra_data(&self, extra_data: &mut impl MatTrait) -> Result<()>

Returns any extra data associated with the video source. Read more
source§

fn get(&self, property_id: i32, property_val: &mut f64) -> Result<bool>

Retrieves the specified property used by the VideoSource. Read more
source§

fn get_first_frame_idx(&self) -> Result<i32>

Retrieve the index of the first frame that will returned after construction. Read more
source§

impl CUDA_SparseOpticalFlowTraitConst for BoxedRef<'_, CUDA_SparseOpticalFlow>

source§

fn as_raw_CUDA_SparseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_SparseOpticalFlowTraitConst for BoxedRef<'_, CUDA_SparsePyrLKOpticalFlow>

source§

fn as_raw_CUDA_SparseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_SparsePyrLKOpticalFlowTraitConst for BoxedRef<'_, CUDA_SparsePyrLKOpticalFlow>

source§

fn as_raw_CUDA_SparsePyrLKOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_win_size(&self) -> Result<Size>

source§

fn get_max_level(&self) -> Result<i32>

source§

fn get_num_iters(&self) -> Result<i32>

source§

fn get_use_initial_flow(&self) -> Result<bool>

source§

impl CUDA_StereoBMTraitConst for BoxedRef<'_, CUDA_StereoBM>

source§

fn as_raw_CUDA_StereoBM( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_StereoBeliefPropagationTraitConst for BoxedRef<'_, CUDA_StereoBeliefPropagation>

source§

fn as_raw_CUDA_StereoBeliefPropagation( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_iters(&self) -> Result<i32>

number of BP iterations on each level
source§

fn get_num_levels(&self) -> Result<i32>

number of levels
source§

fn get_max_data_term(&self) -> Result<f64>

truncation of data cost
source§

fn get_data_weight(&self) -> Result<f64>

data weight
source§

fn get_max_disc_term(&self) -> Result<f64>

truncation of discontinuity cost
source§

fn get_disc_single_jump(&self) -> Result<f64>

discontinuity single jump
source§

fn get_msg_type(&self) -> Result<i32>

type for messages (CV_16SC1 or CV_32FC1)
source§

impl CUDA_StereoBeliefPropagationTraitConst for BoxedRef<'_, CUDA_StereoConstantSpaceBP>

source§

fn as_raw_CUDA_StereoBeliefPropagation( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_iters(&self) -> Result<i32>

number of BP iterations on each level
source§

fn get_num_levels(&self) -> Result<i32>

number of levels
source§

fn get_max_data_term(&self) -> Result<f64>

truncation of data cost
source§

fn get_data_weight(&self) -> Result<f64>

data weight
source§

fn get_max_disc_term(&self) -> Result<f64>

truncation of discontinuity cost
source§

fn get_disc_single_jump(&self) -> Result<f64>

discontinuity single jump
source§

fn get_msg_type(&self) -> Result<i32>

type for messages (CV_16SC1 or CV_32FC1)
source§

impl CUDA_StereoConstantSpaceBPTraitConst for BoxedRef<'_, CUDA_StereoConstantSpaceBP>

source§

fn as_raw_CUDA_StereoConstantSpaceBP( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_nr_plane(&self) -> Result<i32>

number of active disparity on the first level
source§

fn get_use_local_init_data_cost(&self) -> Result<bool>

source§

impl CUDA_StereoSGMTraitConst for BoxedRef<'_, CUDA_StereoSGM>

source§

fn as_raw_CUDA_StereoSGM( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_TemplateMatchingTraitConst for BoxedRef<'_, CUDA_TemplateMatching>

source§

fn as_raw_CUDA_TemplateMatching( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CUDA_VideoReaderTraitConst for BoxedRef<'_, CUDA_VideoReader>

source§

fn as_raw_CUDA_VideoReader( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn format(&self) -> Result<CUDA_FormatInfo>

Returns information about video file format.
source§

fn retrieve(&self, frame: &mut impl ToOutputArray, idx: size_t) -> Result<bool>

Returns previously grabbed video data. Read more
source§

fn retrieve_def(&self, frame: &mut impl ToOutputArray) -> Result<bool>

Returns previously grabbed video data. Read more
source§

fn retrieve_1(&self, frame: &mut impl MatTrait, idx: size_t) -> Result<bool>

Returns previously grabbed encoded video data. Read more
source§

fn retrieve_2(&self, frame: &mut impl GpuMatTrait) -> Result<bool>

Returns the next video frame. Read more
source§

fn get( &self, property_id: CUDA_VideoReaderProps, property_val: &mut f64 ) -> Result<bool>

Returns the specified VideoReader property Read more
source§

fn get_video_reader_props( &self, property_id: CUDA_VideoReaderProps, property_val_out: &mut f64, property_val_in: f64 ) -> Result<bool>

C++ default parameters Read more
source§

fn get_video_reader_props_def( &self, property_id: CUDA_VideoReaderProps, property_val_out: &mut f64 ) -> Result<bool>

source§

fn get_1(&self, property_id: i32, property_val: &mut f64) -> Result<bool>

Retrieves the specified property used by the VideoSource. Read more
source§

impl CUDA_VideoWriterTraitConst for BoxedRef<'_, CUDA_VideoWriter>

source§

fn as_raw_CUDA_VideoWriter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_encoder_params(&self) -> Result<CUDA_EncoderParams>

Retrieve the encoding parameters.
source§

impl CalibrateCRFTraitConst for BoxedRef<'_, CalibrateCRF>

source§

fn as_raw_CalibrateCRF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CalibrateCRFTraitConst for BoxedRef<'_, CalibrateDebevec>

source§

fn as_raw_CalibrateCRF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CalibrateCRFTraitConst for BoxedRef<'_, CalibrateRobertson>

source§

fn as_raw_CalibrateCRF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CalibrateDebevecTraitConst for BoxedRef<'_, CalibrateDebevec>

source§

fn as_raw_CalibrateDebevec( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_lambda(&self) -> Result<f32>

source§

fn get_samples(&self) -> Result<i32>

source§

fn get_random(&self) -> Result<bool>

source§

impl CalibrateRobertsonTraitConst for BoxedRef<'_, CalibrateRobertson>

source§

fn as_raw_CalibrateRobertson( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_iter(&self) -> Result<i32>

source§

fn get_threshold(&self) -> Result<f32>

source§

fn get_radiance(&self) -> Result<Mat>

source§

impl CallMetaDataTraitConst for BoxedRef<'_, CallMetaData>

source§

fn as_raw_CallMetaData(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn file(&self) -> String

source§

fn line(&self) -> size_t

source§

fn function(&self) -> String

source§

fn is_known(&self) -> bool

Whether *this holds actual data.
source§

impl CameraTraitConst for BoxedRef<'_, Camera>

source§

fn as_raw_Camera(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_clip(&self) -> Result<Vec2d>

source§

fn get_window_size(&self) -> Result<Size>

source§

fn get_fov(&self) -> Result<Vec2d>

source§

fn get_principal_point(&self) -> Result<Vec2d>

source§

fn get_focal_length(&self) -> Result<Vec2d>

source§

fn compute_projection_matrix(&self, proj: &mut Matx44d) -> Result<()>

Computes projection matrix using intrinsic parameters of the camera. Read more
source§

impl CascadeClassifierTraitConst for BoxedRef<'_, CascadeClassifier>

source§

fn as_raw_CascadeClassifier( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

Checks whether the classifier has been loaded.
source§

fn is_old_format_cascade(&self) -> Result<bool>

source§

fn get_original_window_size(&self) -> Result<Size>

source§

fn get_feature_type(&self) -> Result<i32>

source§

impl CeilLayerTraitConst for BoxedRef<'_, CeilLayer>

source§

fn as_raw_CeilLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CeluLayerTraitConst for BoxedRef<'_, CeluLayer>

source§

fn as_raw_CeluLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn alpha(&self) -> f32

source§

impl ChannelsPReLULayerTraitConst for BoxedRef<'_, ChannelsPReLULayer>

source§

fn as_raw_ChannelsPReLULayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CharucoBoardTraitConst for BoxedRef<'_, CharucoBoard>

source§

fn as_raw_CharucoBoard(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_legacy_pattern(&self) -> Result<bool>

source§

fn get_chessboard_size(&self) -> Result<Size>

source§

fn get_square_length(&self) -> Result<f32>

source§

fn get_marker_length(&self) -> Result<f32>

source§

fn get_chessboard_corners(&self) -> Result<Vector<Point3f>>

get CharucoBoard::chessboardCorners
source§

fn get_nearest_marker_idx(&self) -> Result<Vector<Vector<i32>>>

get CharucoBoard::nearestMarkerIdx, for each charuco corner, nearest marker index in ids array
source§

fn get_nearest_marker_corners(&self) -> Result<Vector<Vector<i32>>>

get CharucoBoard::nearestMarkerCorners, for each charuco corner, nearest marker corner id of each marker
source§

fn check_charuco_corners_collinear( &self, charuco_ids: &impl ToInputArray ) -> Result<bool>

check whether the ChArUco markers are collinear Read more
source§

impl CharucoDetectorTraitConst for BoxedRef<'_, CharucoDetector>

source§

fn as_raw_CharucoDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_board(&self) -> Result<CharucoBoard>

source§

fn get_charuco_parameters(&self) -> Result<CharucoParameters>

source§

fn get_detector_parameters(&self) -> Result<DetectorParameters>

source§

fn get_refine_parameters(&self) -> Result<RefineParameters>

source§

fn detect_board( &self, image: &impl ToInputArray, charuco_corners: &mut impl ToOutputArray, charuco_ids: &mut impl ToOutputArray, marker_corners: &mut impl ToInputOutputArray, marker_ids: &mut impl ToInputOutputArray ) -> Result<()>

detect aruco markers and interpolate position of ChArUco board corners Read more
source§

fn detect_board_def( &self, image: &impl ToInputArray, charuco_corners: &mut impl ToOutputArray, charuco_ids: &mut impl ToOutputArray ) -> Result<()>

detect aruco markers and interpolate position of ChArUco board corners Read more
source§

fn detect_diamonds( &self, image: &impl ToInputArray, diamond_corners: &mut impl ToOutputArray, diamond_ids: &mut impl ToOutputArray, marker_corners: &mut impl ToInputOutputArray, marker_ids: &mut impl ToInputOutputArray ) -> Result<()>

Detect ChArUco Diamond markers Read more
source§

fn detect_diamonds_def( &self, image: &impl ToInputArray, diamond_corners: &mut impl ToOutputArray, diamond_ids: &mut impl ToOutputArray ) -> Result<()>

Detect ChArUco Diamond markers Read more
source§

impl CharucoParametersTraitConst for BoxedRef<'_, CharucoParameters>

source§

fn as_raw_CharucoParameters( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn camera_matrix(&self) -> Mat

cameraMatrix optional 3x3 floating-point camera matrix
source§

fn dist_coeffs(&self) -> Mat

distCoeffs optional vector of distortion coefficients
source§

fn min_markers(&self) -> i32

minMarkers number of adjacent markers that must be detected to return a charuco corner, default = 2
source§

fn try_refine_markers(&self) -> bool

try to use refine board, default false
source§

impl ChiHistogramCostExtractorTraitConst for BoxedRef<'_, ChiHistogramCostExtractor>

source§

fn as_raw_ChiHistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ClassificationModelTraitConst for BoxedRef<'_, ClassificationModel>

source§

fn as_raw_ClassificationModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_enable_softmax_post_processing(&self) -> Result<bool>

Get enable/disable softmax post processing option. Read more
source§

impl ColorAverageInpainterTraitConst for BoxedRef<'_, ColorAverageInpainter>

source§

fn as_raw_ColorAverageInpainter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ColorCorrectionModelTraitConst for BoxedRef<'_, ColorCorrectionModel>

source§

fn as_raw_ColorCorrectionModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_ccm(&self) -> Result<Mat>

source§

fn get_loss(&self) -> Result<f64>

source§

fn get_src_rgbl(&self) -> Result<Mat>

source§

fn get_dst_rgbl(&self) -> Result<Mat>

source§

fn get_mask(&self) -> Result<Mat>

source§

fn get_weights(&self) -> Result<Mat>

source§

impl ColorInpainterTraitConst for BoxedRef<'_, ColorInpainter>

source§

fn as_raw_ColorInpainter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ColorMomentHashTraitConst for BoxedRef<'_, ColorMomentHash>

source§

fn as_raw_ColorMomentHash( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ColorTraitConst for BoxedRef<'_, Color>

source§

fn as_raw_Color(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn to_vec3b(&self) -> Result<Vec3b>

source§

impl ColoredKinfu_ColoredKinFuTraitConst for BoxedRef<'_, ColoredKinfu_ColoredKinFu>

source§

fn as_raw_ColoredKinfu_ColoredKinFu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_params(&self) -> Result<ColoredKinfu_Params>

Get current parameters
source§

fn render(&self, image: &mut impl ToOutputArray) -> Result<()>

Renders a volume into an image Read more
source§

fn render_1( &self, image: &mut impl ToOutputArray, camera_pose: Matx44f ) -> Result<()>

Renders a volume into an image Read more
source§

fn get_cloud( &self, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray, colors: &mut impl ToOutputArray ) -> Result<()>

Gets points, normals and colors of current 3d mesh Read more
source§

fn get_cloud_def( &self, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Gets points, normals and colors of current 3d mesh Read more
source§

fn get_points(&self, points: &mut impl ToOutputArray) -> Result<()>

Gets points of current 3d mesh Read more
source§

fn get_normals( &self, points: &impl ToInputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Calculates normals for given points Read more
source§

fn get_pose(&self) -> Result<Affine3f>

Get current pose in voxel space
source§

impl ColoredKinfu_ParamsTraitConst for BoxedRef<'_, ColoredKinfu_Params>

source§

fn as_raw_ColoredKinfu_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn frame_size(&self) -> Size

frame size in pixels
source§

fn rgb_frame_size(&self) -> Size

rgb frame size in pixels
source§

fn volume_type(&self) -> Kinfu_VolumeType

source§

fn intr(&self) -> Matx33f

camera intrinsics
source§

fn rgb_intr(&self) -> Matx33f

rgb camera intrinsics
source§

fn depth_factor(&self) -> f32

pre-scale per 1 meter for input values Read more
source§

fn bilateral_sigma_depth(&self) -> f32

Depth sigma in meters for bilateral smooth
source§

fn bilateral_sigma_spatial(&self) -> f32

Spatial sigma in pixels for bilateral smooth
source§

fn bilateral_kernel_size(&self) -> i32

Kernel size in pixels for bilateral smooth
source§

fn pyramid_levels(&self) -> i32

Number of pyramid levels for ICP
source§

fn volume_dims(&self) -> Vec3i

Resolution of voxel space Read more
source§

fn voxel_size(&self) -> f32

Size of voxel in meters
source§

fn tsdf_min_camera_movement(&self) -> f32

Minimal camera movement in meters Read more
source§

fn volume_pose(&self) -> Affine3f

initial volume pose in meters
source§

fn tsdf_trunc_dist(&self) -> f32

distance to truncate in meters Read more
source§

fn tsdf_max_weight(&self) -> i32

max number of frames per voxel Read more
source§

fn raycast_step_factor(&self) -> f32

A length of one raycast step Read more
source§

fn light_pose(&self) -> Vec3f

light pose for rendering in meters
source§

fn icp_dist_thresh(&self) -> f32

distance theshold for ICP in meters
source§

fn icp_angle_thresh(&self) -> f32

angle threshold for ICP in radians
source§

fn icp_iterations(&self) -> Vector<i32>

number of ICP iterations for each pyramid level
source§

fn truncate_threshold(&self) -> f32

Threshold for depth truncation in meters Read more
source§

impl CommandLineParserTraitConst for BoxedRef<'_, CommandLineParser>

source§

fn as_raw_CommandLineParser( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_path_to_application(&self) -> Result<String>

Returns application path Read more
source§

fn get_bool(&self, name: &str, space_delete: bool) -> Result<bool>

Access arguments by name Read more
source§

fn get_bool_def(&self, name: &str) -> Result<bool>

Access arguments by name Read more
source§

fn get_i32(&self, name: &str, space_delete: bool) -> Result<i32>

Access arguments by name Read more
source§

fn get_i32_def(&self, name: &str) -> Result<i32>

Access arguments by name Read more
source§

fn get_f64(&self, name: &str, space_delete: bool) -> Result<f64>

Access arguments by name Read more
source§

fn get_f64_def(&self, name: &str) -> Result<f64>

Access arguments by name Read more
source§

fn get_str(&self, name: &str, space_delete: bool) -> Result<String>

Access arguments by name Read more
source§

fn get_str_def(&self, name: &str) -> Result<String>

Access arguments by name Read more
source§

fn get_u64(&self, name: &str, space_delete: bool) -> Result<u64>

Access arguments by name Read more
source§

fn get_u64_def(&self, name: &str) -> Result<u64>

Access arguments by name Read more
source§

fn get_bool_idx(&self, index: i32, space_delete: bool) -> Result<bool>

Access positional arguments by index Read more
source§

fn get_bool_idx_def(&self, index: i32) -> Result<bool>

Access positional arguments by index Read more
source§

fn get_i32_idx(&self, index: i32, space_delete: bool) -> Result<i32>

Access positional arguments by index Read more
source§

fn get_i32_idx_def(&self, index: i32) -> Result<i32>

Access positional arguments by index Read more
source§

fn get_f64_idx(&self, index: i32, space_delete: bool) -> Result<f64>

Access positional arguments by index Read more
source§

fn get_f64_idx_def(&self, index: i32) -> Result<f64>

Access positional arguments by index Read more
source§

fn get_str_idx(&self, index: i32, space_delete: bool) -> Result<String>

Access positional arguments by index Read more
source§

fn get_str_idx_def(&self, index: i32) -> Result<String>

Access positional arguments by index Read more
source§

fn get_u64_idx(&self, index: i32, space_delete: bool) -> Result<u64>

Access positional arguments by index Read more
source§

fn get_u64_idx_def(&self, index: i32) -> Result<u64>

Access positional arguments by index Read more
source§

fn has(&self, name: &str) -> Result<bool>

Check if field was provided in the command line Read more
source§

fn check(&self) -> Result<bool>

Check for parsing errors Read more
source§

fn print_message(&self) -> Result<()>

Print help message Read more
source§

fn print_errors(&self) -> Result<()>

Print list of errors occurred Read more
source§

impl CompareLayerTraitConst for BoxedRef<'_, CompareLayer>

source§

fn as_raw_CompareLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CompositeIndexParamsTraitConst for BoxedRef<'_, CompositeIndexParams>

source§

fn as_raw_CompositeIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CompressedRectilinearPortraitWarperTraitConst for BoxedRef<'_, CompressedRectilinearPortraitWarper>

source§

fn as_raw_CompressedRectilinearPortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl CompressedRectilinearWarperTraitConst for BoxedRef<'_, CompressedRectilinearWarper>

source§

fn as_raw_CompressedRectilinearWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl ConcatLayerTraitConst for BoxedRef<'_, ConcatLayer>

source§

fn as_raw_ConcatLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn axis(&self) -> i32

source§

fn padding(&self) -> bool

Add zero padding in case of concatenation of blobs with different spatial sizes. Read more
source§

fn padding_value(&self) -> i32

source§

impl ConjGradSolverTraitConst for BoxedRef<'_, ConjGradSolver>

source§

fn as_raw_ConjGradSolver( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ConsistentMosaicInpainterTraitConst for BoxedRef<'_, ConsistentMosaicInpainter>

source§

fn as_raw_ConsistentMosaicInpainter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn stdev_thresh(&self) -> Result<f32>

source§

impl ConstLayerTraitConst for BoxedRef<'_, ConstLayer>

source§

fn as_raw_ConstLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ContextTraitConst for BoxedRef<'_, Context>

source§

fn as_raw_Context(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ndevices(&self) -> Result<size_t>

source§

fn device(&self, idx: size_t) -> Result<Device>

source§

fn ptr(&self) -> Result<*mut c_void>

Returns Read more
source§

fn get_opencl_context_property(&self, property_id: i32) -> Result<*mut c_void>

Get OpenCL context property specified on context creation Read more
source§

fn use_svm(&self) -> Result<bool>

source§

fn empty(&self) -> Result<bool>

source§

impl Context_UserContextTraitConst for BoxedRef<'_, Context_UserContext>

source§

fn as_raw_Context_UserContext( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ContourFittingTraitConst for BoxedRef<'_, ContourFitting>

source§

fn as_raw_ContourFitting( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ConvolutionLayerInt8TraitConst for BoxedRef<'_, ConvolutionLayerInt8>

source§

fn as_raw_ConvolutionLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn input_zp(&self) -> i32

source§

fn output_zp(&self) -> i32

source§

fn input_sc(&self) -> f32

source§

fn output_sc(&self) -> f32

source§

fn per_channel(&self) -> bool

source§

fn use_winograd(&self) -> bool

source§

impl ConvolutionLayerTraitConst for BoxedRef<'_, ConvolutionLayer>

source§

fn as_raw_ConvolutionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn fused_activation(&self) -> bool

source§

fn fused_add(&self) -> bool

source§

fn use_winograd(&self) -> bool

source§

impl ConvolutionTraitConst for BoxedRef<'_, Convolution>

source§

fn as_raw_Convolution(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CorrelationLayerTraitConst for BoxedRef<'_, CorrelationLayer>

source§

fn as_raw_CorrelationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CosLayerTraitConst for BoxedRef<'_, CosLayer>

source§

fn as_raw_CosLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CoshLayerTraitConst for BoxedRef<'_, CoshLayer>

source§

fn as_raw_CoshLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CropAndResizeLayerTraitConst for BoxedRef<'_, CropAndResizeLayer>

source§

fn as_raw_CropAndResizeLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CropLayerTraitConst for BoxedRef<'_, CropLayer>

source§

fn as_raw_CropLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CumSumLayerTraitConst for BoxedRef<'_, CumSumLayer>

source§

fn as_raw_CumSumLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn exclusive(&self) -> i32

source§

fn reverse(&self) -> i32

source§

impl CustomPatternTraitConst for BoxedRef<'_, CustomPattern>

source§

fn as_raw_CustomPattern( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl CylindricalWarperGpuTraitConst for BoxedRef<'_, CylindricalWarperGpu>

source§

fn as_raw_CylindricalWarperGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl CylindricalWarperTraitConst for BoxedRef<'_, CylindricalWarper>

source§

fn as_raw_CylindricalWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl DAISYTraitConst for BoxedRef<'_, DAISY>

source§

fn as_raw_DAISY(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_radius(&self) -> Result<f32>

source§

fn get_q_radius(&self) -> Result<i32>

source§

fn get_q_theta(&self) -> Result<i32>

source§

fn get_q_hist(&self) -> Result<i32>

source§

fn get_norm(&self) -> Result<i32>

source§

fn get_h(&self) -> Result<Mat>

source§

fn get_interpolation(&self) -> Result<bool>

source§

fn get_use_orientation(&self) -> Result<bool>

source§

fn get_default_name(&self) -> Result<String>

source§

fn get_descriptor( &self, y: f64, x: f64, orientation: i32, descriptor: &mut f32 ) -> Result<()>

Parameters Read more
source§

fn get_descriptor_1( &self, y: f64, x: f64, orientation: i32, descriptor: &mut f32, h: &mut f64 ) -> Result<bool>

Parameters Read more
source§

fn get_unnormalized_descriptor( &self, y: f64, x: f64, orientation: i32, descriptor: &mut f32 ) -> Result<()>

Parameters Read more
source§

fn get_unnormalized_descriptor_1( &self, y: f64, x: f64, orientation: i32, descriptor: &mut f32, h: &mut f64 ) -> Result<bool>

Parameters Read more
source§

impl DFTTraitConst for BoxedRef<'_, DFT>

source§

fn as_raw_DFT(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DISOpticalFlowTraitConst for BoxedRef<'_, DISOpticalFlow>

source§

fn as_raw_DISOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_finest_scale(&self) -> Result<i32>

Finest level of the Gaussian pyramid on which the flow is computed (zero level corresponds to the original image resolution). The final flow is obtained by bilinear upscaling. Read more
source§

fn get_patch_size(&self) -> Result<i32>

Size of an image patch for matching (in pixels). Normally, default 8x8 patches work well enough in most cases. Read more
source§

fn get_patch_stride(&self) -> Result<i32>

Stride between neighbor patches. Must be less than patch size. Lower values correspond to higher flow quality. Read more
source§

fn get_gradient_descent_iterations(&self) -> Result<i32>

Maximum number of gradient descent iterations in the patch inverse search stage. Higher values may improve quality in some cases. Read more
source§

fn get_variational_refinement_iterations(&self) -> Result<i32>

Number of fixed point iterations of variational refinement per scale. Set to zero to disable variational refinement completely. Higher values will typically result in more smooth and high-quality flow. Read more
source§

fn get_variational_refinement_alpha(&self) -> Result<f32>

Weight of the smoothness term Read more
source§

fn get_variational_refinement_delta(&self) -> Result<f32>

Weight of the color constancy term Read more
source§

fn get_variational_refinement_gamma(&self) -> Result<f32>

Weight of the gradient constancy term Read more
source§

fn get_use_mean_normalization(&self) -> Result<bool>

Whether to use mean-normalization of patches when computing patch distance. It is turned on by default as it typically provides a noticeable quality boost because of increased robustness to illumination variations. Turn it off if you are certain that your sequence doesn’t contain any changes in illumination. Read more
source§

fn get_use_spatial_propagation(&self) -> Result<bool>

Whether to use spatial propagation of good optical flow vectors. This option is turned on by default, as it tends to work better on average and can sometimes help recover from major errors introduced by the coarse-to-fine scheme employed by the DIS optical flow algorithm. Turning this option off can make the output flow field a bit smoother, however. Read more
source§

impl DPMDetectorTraitConst for BoxedRef<'_, DPMDetector>

source§

fn as_raw_DPMDetector(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_empty(&self) -> Result<bool>

source§

fn get_class_names(&self) -> Result<Vector<String>>

Return the class (model) names that were passed in constructor or method load or extracted from models filenames in those methods.
source§

fn get_class_count(&self) -> Result<size_t>

Return a count of loaded models (classes).
source§

impl DPMDetector_ObjectDetectionTraitConst for BoxedRef<'_, DPMDetector_ObjectDetection>

source§

fn as_raw_DPMDetector_ObjectDetection( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn rect(&self) -> Rect

source§

fn score(&self) -> f32

source§

fn class_id(&self) -> i32

source§

impl DTFilterTraitConst for BoxedRef<'_, DTFilter>

source§

fn as_raw_DTFilter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DTreesTraitConst for BoxedRef<'_, Boost>

source§

fn as_raw_DTrees(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_categories(&self) -> Result<i32>

Cluster possible values of a categorical variable into K<=maxCategories clusters to find a suboptimal split. If a discrete variable, on which the training procedure tries to make a split, takes more than maxCategories values, the precise best subset estimation may take a very long time because the algorithm is exponential. Instead, many decision trees engines (including our implementation) try to find sub-optimal split in this case by clustering all the samples into maxCategories clusters that is some categories are merged together. The clustering is applied only in n > 2-class classification problems for categorical variables with N > max_categories possible values. In case of regression and 2-class classification the optimal split can be found efficiently without employing clustering, thus the parameter is not used in these cases. Default value is 10. Read more
source§

fn get_max_depth(&self) -> Result<i32>

The maximum possible depth of the tree. That is the training algorithms attempts to split a node while its depth is less than maxDepth. The root node has zero depth. The actual depth may be smaller if the other termination criteria are met (see the outline of the training procedure [ml_intro_trees] “here”), and/or if the tree is pruned. Default value is INT_MAX. Read more
source§

fn get_min_sample_count(&self) -> Result<i32>

If the number of samples in a node is less than this parameter then the node will not be split. Read more
source§

fn get_cv_folds(&self) -> Result<i32>

If CVFolds > 1 then algorithms prunes the built decision tree using K-fold cross-validation procedure where K is equal to CVFolds. Default value is 10. Read more
source§

fn get_use_surrogates(&self) -> Result<bool>

If true then surrogate splits will be built. These splits allow to work with missing data and compute variable importance correctly. Default value is false. Read more
source§

fn get_use1_se_rule(&self) -> Result<bool>

If true then a pruning will be harsher. This will make a tree more compact and more resistant to the training data noise but a bit less accurate. Default value is true. Read more
source§

fn get_truncate_pruned_tree(&self) -> Result<bool>

If true then pruned branches are physically removed from the tree. Otherwise they are retained and it is possible to get results from the original unpruned (or pruned less aggressively) tree. Default value is true. Read more
source§

fn get_regression_accuracy(&self) -> Result<f32>

Termination criteria for regression trees. If all absolute differences between an estimated value in a node and values of train samples in this node are less than this parameter then the node will not be split further. Default value is 0.01f Read more
source§

fn get_priors(&self) -> Result<Mat>

The array of a priori class probabilities, sorted by the class label value. Read more
source§

fn get_roots(&self) -> Result<Vector<i32>>

Returns indices of root nodes
source§

fn get_nodes(&self) -> Result<Vector<DTrees_Node>>

Returns all the nodes Read more
source§

fn get_splits(&self) -> Result<Vector<DTrees_Split>>

Returns all the splits Read more
source§

fn get_subsets(&self) -> Result<Vector<i32>>

Returns all the bitsets for categorical splits Read more
source§

impl DTreesTraitConst for BoxedRef<'_, DTrees>

source§

fn as_raw_DTrees(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_categories(&self) -> Result<i32>

Cluster possible values of a categorical variable into K<=maxCategories clusters to find a suboptimal split. If a discrete variable, on which the training procedure tries to make a split, takes more than maxCategories values, the precise best subset estimation may take a very long time because the algorithm is exponential. Instead, many decision trees engines (including our implementation) try to find sub-optimal split in this case by clustering all the samples into maxCategories clusters that is some categories are merged together. The clustering is applied only in n > 2-class classification problems for categorical variables with N > max_categories possible values. In case of regression and 2-class classification the optimal split can be found efficiently without employing clustering, thus the parameter is not used in these cases. Default value is 10. Read more
source§

fn get_max_depth(&self) -> Result<i32>

The maximum possible depth of the tree. That is the training algorithms attempts to split a node while its depth is less than maxDepth. The root node has zero depth. The actual depth may be smaller if the other termination criteria are met (see the outline of the training procedure [ml_intro_trees] “here”), and/or if the tree is pruned. Default value is INT_MAX. Read more
source§

fn get_min_sample_count(&self) -> Result<i32>

If the number of samples in a node is less than this parameter then the node will not be split. Read more
source§

fn get_cv_folds(&self) -> Result<i32>

If CVFolds > 1 then algorithms prunes the built decision tree using K-fold cross-validation procedure where K is equal to CVFolds. Default value is 10. Read more
source§

fn get_use_surrogates(&self) -> Result<bool>

If true then surrogate splits will be built. These splits allow to work with missing data and compute variable importance correctly. Default value is false. Read more
source§

fn get_use1_se_rule(&self) -> Result<bool>

If true then a pruning will be harsher. This will make a tree more compact and more resistant to the training data noise but a bit less accurate. Default value is true. Read more
source§

fn get_truncate_pruned_tree(&self) -> Result<bool>

If true then pruned branches are physically removed from the tree. Otherwise they are retained and it is possible to get results from the original unpruned (or pruned less aggressively) tree. Default value is true. Read more
source§

fn get_regression_accuracy(&self) -> Result<f32>

Termination criteria for regression trees. If all absolute differences between an estimated value in a node and values of train samples in this node are less than this parameter then the node will not be split further. Default value is 0.01f Read more
source§

fn get_priors(&self) -> Result<Mat>

The array of a priori class probabilities, sorted by the class label value. Read more
source§

fn get_roots(&self) -> Result<Vector<i32>>

Returns indices of root nodes
source§

fn get_nodes(&self) -> Result<Vector<DTrees_Node>>

Returns all the nodes Read more
source§

fn get_splits(&self) -> Result<Vector<DTrees_Split>>

Returns all the splits Read more
source§

fn get_subsets(&self) -> Result<Vector<i32>>

Returns all the bitsets for categorical splits Read more
source§

impl DTreesTraitConst for BoxedRef<'_, RTrees>

source§

fn as_raw_DTrees(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_categories(&self) -> Result<i32>

Cluster possible values of a categorical variable into K<=maxCategories clusters to find a suboptimal split. If a discrete variable, on which the training procedure tries to make a split, takes more than maxCategories values, the precise best subset estimation may take a very long time because the algorithm is exponential. Instead, many decision trees engines (including our implementation) try to find sub-optimal split in this case by clustering all the samples into maxCategories clusters that is some categories are merged together. The clustering is applied only in n > 2-class classification problems for categorical variables with N > max_categories possible values. In case of regression and 2-class classification the optimal split can be found efficiently without employing clustering, thus the parameter is not used in these cases. Default value is 10. Read more
source§

fn get_max_depth(&self) -> Result<i32>

The maximum possible depth of the tree. That is the training algorithms attempts to split a node while its depth is less than maxDepth. The root node has zero depth. The actual depth may be smaller if the other termination criteria are met (see the outline of the training procedure [ml_intro_trees] “here”), and/or if the tree is pruned. Default value is INT_MAX. Read more
source§

fn get_min_sample_count(&self) -> Result<i32>

If the number of samples in a node is less than this parameter then the node will not be split. Read more
source§

fn get_cv_folds(&self) -> Result<i32>

If CVFolds > 1 then algorithms prunes the built decision tree using K-fold cross-validation procedure where K is equal to CVFolds. Default value is 10. Read more
source§

fn get_use_surrogates(&self) -> Result<bool>

If true then surrogate splits will be built. These splits allow to work with missing data and compute variable importance correctly. Default value is false. Read more
source§

fn get_use1_se_rule(&self) -> Result<bool>

If true then a pruning will be harsher. This will make a tree more compact and more resistant to the training data noise but a bit less accurate. Default value is true. Read more
source§

fn get_truncate_pruned_tree(&self) -> Result<bool>

If true then pruned branches are physically removed from the tree. Otherwise they are retained and it is possible to get results from the original unpruned (or pruned less aggressively) tree. Default value is true. Read more
source§

fn get_regression_accuracy(&self) -> Result<f32>

Termination criteria for regression trees. If all absolute differences between an estimated value in a node and values of train samples in this node are less than this parameter then the node will not be split further. Default value is 0.01f Read more
source§

fn get_priors(&self) -> Result<Mat>

The array of a priori class probabilities, sorted by the class label value. Read more
source§

fn get_roots(&self) -> Result<Vector<i32>>

Returns indices of root nodes
source§

fn get_nodes(&self) -> Result<Vector<DTrees_Node>>

Returns all the nodes Read more
source§

fn get_splits(&self) -> Result<Vector<DTrees_Split>>

Returns all the splits Read more
source§

fn get_subsets(&self) -> Result<Vector<i32>>

Returns all the bitsets for categorical splits Read more
source§

impl DTrees_NodeTraitConst for BoxedRef<'_, DTrees_Node>

source§

fn as_raw_DTrees_Node(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn value(&self) -> f64

Value at the node: a class label in case of classification or estimated function value in case of regression.
source§

fn class_idx(&self) -> i32

Class index normalized to 0..class_count-1 range and assigned to the node. It is used internally in classification trees and tree ensembles.
source§

fn parent(&self) -> i32

Index of the parent node
source§

fn left(&self) -> i32

Index of the left child node
source§

fn right(&self) -> i32

Index of right child node
source§

fn default_dir(&self) -> i32

Default direction where to go (-1: left or +1: right). It helps in the case of missing values.
source§

fn split(&self) -> i32

Index of the first split
source§

impl DTrees_SplitTraitConst for BoxedRef<'_, DTrees_Split>

source§

fn as_raw_DTrees_Split(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn var_idx(&self) -> i32

Index of variable on which the split is created.
source§

fn inversed(&self) -> bool

If true, then the inverse split rule is used (i.e. left and right branches are exchanged in the rule expressions below).
source§

fn quality(&self) -> f32

The split quality, a positive number. It is used to choose the best split.
source§

fn next(&self) -> i32

Index of the next split in the list of splits for the node
source§

fn c(&self) -> f32

< The threshold value in case of split on an ordered variable. The rule is: Read more
source§

fn subset_ofs(&self) -> i32

< Offset of the bitset used by the split on a categorical variable. The rule is: Read more
source§

impl DataAugmentationLayerTraitConst for BoxedRef<'_, DataAugmentationLayer>

source§

fn as_raw_DataAugmentationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DataTraitConst for BoxedRef<'_, Data>

source§

fn as_raw_Data(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DeblurerBaseTraitConst for BoxedRef<'_, DeblurerBase>

source§

fn as_raw_DeblurerBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn blurriness_rates(&self) -> Result<Vector<f32>>

source§

impl DeblurerBaseTraitConst for BoxedRef<'_, NullDeblurer>

source§

fn as_raw_DeblurerBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn blurriness_rates(&self) -> Result<Vector<f32>>

source§

impl DeblurerBaseTraitConst for BoxedRef<'_, WeightingDeblurer>

source§

fn as_raw_DeblurerBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn blurriness_rates(&self) -> Result<Vector<f32>>

source§

impl<T: Boxed + Debug> Debug for BoxedRef<'_, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl DeconvolutionLayerTraitConst for BoxedRef<'_, DeconvolutionLayer>

source§

fn as_raw_DeconvolutionLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, DISOpticalFlow>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, DenseOpticalFlow>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, DenseRLOFOpticalFlow>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, DualTVL1OpticalFlow>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, FarnebackOpticalFlow>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, OpticalFlowPCAFlow>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseOpticalFlowTraitConst for BoxedRef<'_, VariationalRefinement>

source§

fn as_raw_DenseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DensePyrLkOptFlowEstimatorGpuTraitConst for BoxedRef<'_, DensePyrLkOptFlowEstimatorGpu>

source§

fn as_raw_DensePyrLkOptFlowEstimatorGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DenseRLOFOpticalFlowTraitConst for BoxedRef<'_, DenseRLOFOpticalFlow>

source§

fn as_raw_DenseRLOFOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rlof_optical_flow_parameter( &self ) -> Result<Ptr<RLOFOpticalFlowParameter>>

Configuration of the RLOF alogrithm. Read more
source§

fn get_forward_backward(&self) -> Result<f32>

Threshold for the forward backward confidence check For each grid point inline formula a motion vector inline formula is computed. * If the forward backward error block formula * is larger than threshold given by this function then the motion vector will not be used by the following * vector field interpolation. inline formula denotes the backward flow. Note, the forward backward test * will only be applied if the threshold > 0. This may results into a doubled runtime for the motion estimation. * getForwardBackward, setGridStep Read more
source§

fn get_grid_step(&self) -> Result<Size>

Size of the grid to spawn the motion vectors. For each grid point a motion vector is computed. Some motion vectors will be removed due to the forwatd backward * threshold (if set >0). The rest will be the base of the vector field interpolation. * see also: getForwardBackward, setGridStep
source§

fn get_interpolation(&self) -> Result<InterpolationType>

Interpolation used to compute the dense optical flow. Two interpolation algorithms are supported * - INTERP_GEO applies the fast geodesic interpolation, see Geistert2016. * - INTERP_EPIC_RESIDUAL applies the edge-preserving interpolation, see Revaud2015,Geistert2016. * ximgproc::EdgeAwareInterpolator, getInterpolation Read more
source§

fn get_epick(&self) -> Result<i32>

see ximgproc::EdgeAwareInterpolator() K value. K is a number of nearest-neighbor matches considered, when fitting a locally affine * model. Usually it should be around 128. However, lower values would make the interpolation noticeably faster. * see also: ximgproc::EdgeAwareInterpolator, setEPICK
source§

fn get_epic_sigma(&self) -> Result<f32>

see ximgproc::EdgeAwareInterpolator() sigma value. Sigma is a parameter defining how fast the weights decrease in the locally-weighted affine * fitting. Higher values can help preserve fine details, lower values can help to get rid of noise in the * output flow. * see also: ximgproc::EdgeAwareInterpolator, setEPICSigma
source§

fn get_epic_lambda(&self) -> Result<f32>

see ximgproc::EdgeAwareInterpolator() lambda value. Lambda is a parameter defining the weight of the edge-aware term in geodesic distance, * should be in the range of 0 to 1000. * see also: ximgproc::EdgeAwareInterpolator, setEPICSigma
source§

fn get_fgs_lambda(&self) -> Result<f32>

see ximgproc::EdgeAwareInterpolator(). Sets the respective fastGlobalSmootherFilter() parameter. * see also: ximgproc::EdgeAwareInterpolator, setFgsLambda
source§

fn get_fgs_sigma(&self) -> Result<f32>

see ximgproc::EdgeAwareInterpolator(). Sets the respective fastGlobalSmootherFilter() parameter. * see also: ximgproc::EdgeAwareInterpolator, ximgproc::fastGlobalSmootherFilter, setFgsSigma
source§

fn get_use_post_proc(&self) -> Result<bool>

enables ximgproc::fastGlobalSmootherFilter Read more
source§

fn get_use_variational_refinement(&self) -> Result<bool>

enables VariationalRefinement Read more
source§

fn get_ricsp_size(&self) -> Result<i32>

Parameter to tune the approximate size of the superpixel used for oversegmentation. Read more
source§

fn get_ricslic_type(&self) -> Result<i32>

Parameter to choose superpixel algorithm variant to use: Read more
source§

impl DepthCleanerTraitConst for BoxedRef<'_, DepthCleaner>

source§

fn as_raw_DepthCleaner(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn apply( &self, points: &impl ToInputArray, depth: &mut impl ToOutputArray ) -> Result<()>

Given a set of 3d points in a depth image, compute the normals at each point. Read more
source§

fn initialize(&self) -> Result<()>

Initializes some data that is cached for later computation If that function is not called, it will be called the first time normals are computed
source§

fn get_window_size(&self) -> Result<i32>

source§

fn get_depth(&self) -> Result<i32>

source§

fn get_method(&self) -> Result<i32>

source§

impl DequantizeLayerTraitConst for BoxedRef<'_, DequantizeLayer>

source§

fn as_raw_DequantizeLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scales(&self) -> Vector<f32>

source§

fn zeropoints(&self) -> Vector<i32>

source§

impl DescriptorMatcherTraitConst for BoxedRef<'_, BFMatcher>

source§

fn as_raw_DescriptorMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_train_descriptors(&self) -> Result<Vector<Mat>>

Returns a constant link to the train descriptor collection trainDescCollection .
source§

fn empty(&self) -> Result<bool>

Returns true if there are no train descriptors in the both collections.
source§

fn is_mask_supported(&self) -> Result<bool>

Returns true if the descriptor matcher supports masking permissible matches.
source§

fn train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<DMatch>, mask: &impl ToInputArray ) -> Result<()>

Finds the best match for each descriptor from a query set. Read more
source§

fn train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<DMatch> ) -> Result<()>

Finds the best match for each descriptor from a query set. Read more
source§

fn knn_train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, k: i32, mask: &impl ToInputArray, compact_result: bool ) -> Result<()>

Finds the k best matches for each descriptor from a query set. Read more
source§

fn knn_train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, k: i32 ) -> Result<()>

Finds the k best matches for each descriptor from a query set. Read more
source§

fn radius_train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, max_distance: f32, mask: &impl ToInputArray, compact_result: bool ) -> Result<()>

For each query descriptor, finds the training descriptors not farther than the specified distance. Read more
source§

fn radius_train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, max_distance: f32 ) -> Result<()>

For each query descriptor, finds the training descriptors not farther than the specified distance. Read more
source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn clone(&self, empty_train_data: bool) -> Result<Ptr<DescriptorMatcher>>

Clones the matcher. Read more
source§

fn clone_def(&self) -> Result<Ptr<DescriptorMatcher>>

Clones the matcher. Read more
source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl DescriptorMatcherTraitConst for BoxedRef<'_, DescriptorMatcher>

source§

fn as_raw_DescriptorMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_train_descriptors(&self) -> Result<Vector<Mat>>

Returns a constant link to the train descriptor collection trainDescCollection .
source§

fn empty(&self) -> Result<bool>

Returns true if there are no train descriptors in the both collections.
source§

fn is_mask_supported(&self) -> Result<bool>

Returns true if the descriptor matcher supports masking permissible matches.
source§

fn train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<DMatch>, mask: &impl ToInputArray ) -> Result<()>

Finds the best match for each descriptor from a query set. Read more
source§

fn train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<DMatch> ) -> Result<()>

Finds the best match for each descriptor from a query set. Read more
source§

fn knn_train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, k: i32, mask: &impl ToInputArray, compact_result: bool ) -> Result<()>

Finds the k best matches for each descriptor from a query set. Read more
source§

fn knn_train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, k: i32 ) -> Result<()>

Finds the k best matches for each descriptor from a query set. Read more
source§

fn radius_train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, max_distance: f32, mask: &impl ToInputArray, compact_result: bool ) -> Result<()>

For each query descriptor, finds the training descriptors not farther than the specified distance. Read more
source§

fn radius_train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, max_distance: f32 ) -> Result<()>

For each query descriptor, finds the training descriptors not farther than the specified distance. Read more
source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn clone(&self, empty_train_data: bool) -> Result<Ptr<DescriptorMatcher>>

Clones the matcher. Read more
source§

fn clone_def(&self) -> Result<Ptr<DescriptorMatcher>>

Clones the matcher. Read more
source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl DescriptorMatcherTraitConst for BoxedRef<'_, FlannBasedMatcher>

source§

fn as_raw_DescriptorMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_train_descriptors(&self) -> Result<Vector<Mat>>

Returns a constant link to the train descriptor collection trainDescCollection .
source§

fn empty(&self) -> Result<bool>

Returns true if there are no train descriptors in the both collections.
source§

fn is_mask_supported(&self) -> Result<bool>

Returns true if the descriptor matcher supports masking permissible matches.
source§

fn train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<DMatch>, mask: &impl ToInputArray ) -> Result<()>

Finds the best match for each descriptor from a query set. Read more
source§

fn train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<DMatch> ) -> Result<()>

Finds the best match for each descriptor from a query set. Read more
source§

fn knn_train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, k: i32, mask: &impl ToInputArray, compact_result: bool ) -> Result<()>

Finds the k best matches for each descriptor from a query set. Read more
source§

fn knn_train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, k: i32 ) -> Result<()>

Finds the k best matches for each descriptor from a query set. Read more
source§

fn radius_train_match( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, max_distance: f32, mask: &impl ToInputArray, compact_result: bool ) -> Result<()>

For each query descriptor, finds the training descriptors not farther than the specified distance. Read more
source§

fn radius_train_match_def( &self, query_descriptors: &impl ToInputArray, train_descriptors: &impl ToInputArray, matches: &mut Vector<Vector<DMatch>>, max_distance: f32 ) -> Result<()>

For each query descriptor, finds the training descriptors not farther than the specified distance. Read more
source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn clone(&self, empty_train_data: bool) -> Result<Ptr<DescriptorMatcher>>

Clones the matcher. Read more
source§

fn clone_def(&self) -> Result<Ptr<DescriptorMatcher>>

Clones the matcher. Read more
source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Detail_AffineBasedEstimatorTraitConst for BoxedRef<'_, Detail_AffineBasedEstimator>

source§

fn as_raw_Detail_AffineBasedEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_AffineBestOf2NearestMatcherTraitConst for BoxedRef<'_, Detail_AffineBestOf2NearestMatcher>

source§

fn as_raw_Detail_AffineBestOf2NearestMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_AffineWarperTraitConst for BoxedRef<'_, Detail_AffineWarper>

source§

fn as_raw_Detail_AffineWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BestOf2NearestMatcherTraitConst for BoxedRef<'_, Detail_AffineBestOf2NearestMatcher>

source§

fn as_raw_Detail_BestOf2NearestMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BestOf2NearestMatcherTraitConst for BoxedRef<'_, Detail_BestOf2NearestMatcher>

source§

fn as_raw_Detail_BestOf2NearestMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BestOf2NearestMatcherTraitConst for BoxedRef<'_, Detail_BestOf2NearestRangeMatcher>

source§

fn as_raw_Detail_BestOf2NearestMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BestOf2NearestRangeMatcherTraitConst for BoxedRef<'_, Detail_BestOf2NearestRangeMatcher>

source§

fn as_raw_Detail_BestOf2NearestRangeMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BlenderTraitConst for BoxedRef<'_, Detail_Blender>

source§

fn as_raw_Detail_Blender( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BlenderTraitConst for BoxedRef<'_, Detail_FeatherBlender>

source§

fn as_raw_Detail_Blender( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BlenderTraitConst for BoxedRef<'_, Detail_MultiBandBlender>

source§

fn as_raw_Detail_Blender( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BlocksChannelsCompensatorTraitConst for BoxedRef<'_, Detail_BlocksChannelsCompensator>

source§

fn as_raw_Detail_BlocksChannelsCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BlocksCompensatorTraitConst for BoxedRef<'_, Detail_BlocksChannelsCompensator>

source§

fn as_raw_Detail_BlocksCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_similarity_threshold(&self) -> Result<f64>

source§

fn get_block_size(&self) -> Result<Size>

source§

fn get_nr_gains_filtering_iterations(&self) -> Result<i32>

source§

impl Detail_BlocksCompensatorTraitConst for BoxedRef<'_, Detail_BlocksCompensator>

source§

fn as_raw_Detail_BlocksCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_similarity_threshold(&self) -> Result<f64>

source§

fn get_block_size(&self) -> Result<Size>

source§

fn get_nr_gains_filtering_iterations(&self) -> Result<i32>

source§

impl Detail_BlocksCompensatorTraitConst for BoxedRef<'_, Detail_BlocksGainCompensator>

source§

fn as_raw_Detail_BlocksCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_similarity_threshold(&self) -> Result<f64>

source§

fn get_block_size(&self) -> Result<Size>

source§

fn get_nr_gains_filtering_iterations(&self) -> Result<i32>

source§

impl Detail_BlocksGainCompensatorTraitConst for BoxedRef<'_, Detail_BlocksGainCompensator>

source§

fn as_raw_Detail_BlocksGainCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BundleAdjusterAffinePartialTraitConst for BoxedRef<'_, Detail_BundleAdjusterAffinePartial>

source§

fn as_raw_Detail_BundleAdjusterAffinePartial( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BundleAdjusterAffineTraitConst for BoxedRef<'_, Detail_BundleAdjusterAffine>

source§

fn as_raw_Detail_BundleAdjusterAffine( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BundleAdjusterBaseTraitConst for BoxedRef<'_, Detail_BundleAdjusterAffine>

source§

fn as_raw_Detail_BundleAdjusterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refinement_mask(&self) -> Result<Mat>

source§

fn conf_thresh(&self) -> Result<f64>

source§

impl Detail_BundleAdjusterBaseTraitConst for BoxedRef<'_, Detail_BundleAdjusterAffinePartial>

source§

fn as_raw_Detail_BundleAdjusterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refinement_mask(&self) -> Result<Mat>

source§

fn conf_thresh(&self) -> Result<f64>

source§

impl Detail_BundleAdjusterBaseTraitConst for BoxedRef<'_, Detail_BundleAdjusterBase>

source§

fn as_raw_Detail_BundleAdjusterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refinement_mask(&self) -> Result<Mat>

source§

fn conf_thresh(&self) -> Result<f64>

source§

impl Detail_BundleAdjusterBaseTraitConst for BoxedRef<'_, Detail_BundleAdjusterRay>

source§

fn as_raw_Detail_BundleAdjusterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refinement_mask(&self) -> Result<Mat>

source§

fn conf_thresh(&self) -> Result<f64>

source§

impl Detail_BundleAdjusterBaseTraitConst for BoxedRef<'_, Detail_BundleAdjusterReproj>

source§

fn as_raw_Detail_BundleAdjusterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refinement_mask(&self) -> Result<Mat>

source§

fn conf_thresh(&self) -> Result<f64>

source§

impl Detail_BundleAdjusterBaseTraitConst for BoxedRef<'_, Detail_NoBundleAdjuster>

source§

fn as_raw_Detail_BundleAdjusterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refinement_mask(&self) -> Result<Mat>

source§

fn conf_thresh(&self) -> Result<f64>

source§

impl Detail_BundleAdjusterRayTraitConst for BoxedRef<'_, Detail_BundleAdjusterRay>

source§

fn as_raw_Detail_BundleAdjusterRay( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_BundleAdjusterReprojTraitConst for BoxedRef<'_, Detail_BundleAdjusterReproj>

source§

fn as_raw_Detail_BundleAdjusterReproj( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CameraParamsTraitConst for BoxedRef<'_, Detail_CameraParams>

source§

fn as_raw_Detail_CameraParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn focal(&self) -> f64

source§

fn aspect(&self) -> f64

source§

fn ppx(&self) -> f64

source§

fn ppy(&self) -> f64

source§

fn r(&self) -> Mat

source§

fn t(&self) -> Mat

source§

fn k(&self) -> Result<Mat>

source§

impl Detail_ChannelsCompensatorTraitConst for BoxedRef<'_, Detail_ChannelsCompensator>

source§

fn as_raw_Detail_ChannelsCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_similarity_threshold(&self) -> Result<f64>

source§

fn gains(&self) -> Result<Vector<Scalar>>

source§

impl Detail_CheckContextTraitConst for BoxedRef<'_, Detail_CheckContext>

source§

fn as_raw_Detail_CheckContext( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn func(&self) -> String

source§

fn file(&self) -> String

source§

fn line(&self) -> i32

source§

fn test_op(&self) -> Detail_TestOp

source§

fn message(&self) -> String

source§

fn p1_str(&self) -> String

source§

fn p2_str(&self) -> String

source§

impl Detail_CompressedRectilinearPortraitProjectorTraitConst for BoxedRef<'_, Detail_CompressedRectilinearPortraitProjector>

source§

fn as_raw_Detail_CompressedRectilinearPortraitProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn a(&self) -> f32

source§

fn b(&self) -> f32

source§

impl Detail_CompressedRectilinearPortraitWarperTraitConst for BoxedRef<'_, Detail_CompressedRectilinearPortraitWarper>

source§

fn as_raw_Detail_CompressedRectilinearPortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CompressedRectilinearProjectorTraitConst for BoxedRef<'_, Detail_CompressedRectilinearProjector>

source§

fn as_raw_Detail_CompressedRectilinearProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn a(&self) -> f32

source§

fn b(&self) -> f32

source§

impl Detail_CompressedRectilinearWarperTraitConst for BoxedRef<'_, Detail_CompressedRectilinearWarper>

source§

fn as_raw_Detail_CompressedRectilinearWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CylindricalPortraitProjectorTraitConst for BoxedRef<'_, Detail_CylindricalPortraitProjector>

source§

fn as_raw_Detail_CylindricalPortraitProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CylindricalPortraitWarperTraitConst for BoxedRef<'_, Detail_CylindricalPortraitWarper>

source§

fn as_raw_Detail_CylindricalPortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CylindricalProjectorTraitConst for BoxedRef<'_, Detail_CylindricalProjector>

source§

fn as_raw_Detail_CylindricalProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CylindricalWarperGpuTraitConst for BoxedRef<'_, Detail_CylindricalWarperGpu>

source§

fn as_raw_Detail_CylindricalWarperGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CylindricalWarperTraitConst for BoxedRef<'_, Detail_CylindricalWarper>

source§

fn as_raw_Detail_CylindricalWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_CylindricalWarperTraitConst for BoxedRef<'_, Detail_CylindricalWarperGpu>

source§

fn as_raw_Detail_CylindricalWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_DisjointSetsTraitConst for BoxedRef<'_, Detail_DisjointSets>

source§

fn as_raw_Detail_DisjointSets( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn parent(&self) -> Vector<i32>

source§

fn size(&self) -> Vector<i32>

source§

impl Detail_DpSeamFinderTraitConst for BoxedRef<'_, Detail_DpSeamFinder>

source§

fn as_raw_Detail_DpSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn cost_function(&self) -> Result<Detail_DpSeamFinder_CostFunction>

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_AffineBasedEstimator>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_BundleAdjusterAffine>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_BundleAdjusterAffinePartial>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_BundleAdjusterBase>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_BundleAdjusterRay>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_BundleAdjusterReproj>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_Estimator>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_HomographyBasedEstimator>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_EstimatorTraitConst for BoxedRef<'_, Detail_NoBundleAdjuster>

source§

fn as_raw_Detail_Estimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_BlocksChannelsCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_BlocksCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_BlocksGainCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_ChannelsCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_ExposureCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_GainCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExposureCompensatorTraitConst for BoxedRef<'_, Detail_NoExposureCompensator>

source§

fn as_raw_Detail_ExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ExtractArgsCallbackTraitConst for BoxedRef<'_, Detail_ExtractArgsCallback>

source§

fn as_raw_Detail_ExtractArgsCallback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn apply(&self, info: &GTypesInfo) -> Result<GRunArgs>

source§

impl Detail_ExtractMetaCallbackTraitConst for BoxedRef<'_, Detail_ExtractMetaCallback>

source§

fn as_raw_Detail_ExtractMetaCallback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_FeatherBlenderTraitConst for BoxedRef<'_, Detail_FeatherBlender>

source§

fn as_raw_Detail_FeatherBlender( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn sharpness(&self) -> Result<f32>

source§

impl Detail_FeaturesMatcherTraitConst for BoxedRef<'_, Detail_AffineBestOf2NearestMatcher>

source§

fn as_raw_Detail_FeaturesMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_thread_safe(&self) -> Result<bool>

Returns Read more
source§

impl Detail_FeaturesMatcherTraitConst for BoxedRef<'_, Detail_BestOf2NearestMatcher>

source§

fn as_raw_Detail_FeaturesMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_thread_safe(&self) -> Result<bool>

Returns Read more
source§

impl Detail_FeaturesMatcherTraitConst for BoxedRef<'_, Detail_BestOf2NearestRangeMatcher>

source§

fn as_raw_Detail_FeaturesMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_thread_safe(&self) -> Result<bool>

Returns Read more
source§

impl Detail_FeaturesMatcherTraitConst for BoxedRef<'_, Detail_FeaturesMatcher>

source§

fn as_raw_Detail_FeaturesMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_thread_safe(&self) -> Result<bool>

Returns Read more
source§

impl Detail_FisheyeProjectorTraitConst for BoxedRef<'_, Detail_FisheyeProjector>

source§

fn as_raw_Detail_FisheyeProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_FisheyeWarperTraitConst for BoxedRef<'_, Detail_FisheyeWarper>

source§

fn as_raw_Detail_FisheyeWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GArrayUTraitConst for BoxedRef<'_, Detail_GArrayU>

source§

fn as_raw_Detail_GArrayU( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GOpaqueUTraitConst for BoxedRef<'_, Detail_GOpaqueU>

source§

fn as_raw_Detail_GOpaqueU( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GainCompensatorTraitConst for BoxedRef<'_, Detail_GainCompensator>

source§

fn as_raw_Detail_GainCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_similarity_threshold(&self) -> Result<f64>

source§

fn gains(&self) -> Result<Vector<f64>>

source§

impl Detail_GraphCutSeamFinderBaseTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinder>

source§

fn as_raw_Detail_GraphCutSeamFinderBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GraphCutSeamFinderBaseTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinderBase>

source§

fn as_raw_Detail_GraphCutSeamFinderBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GraphCutSeamFinderBaseTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinderGpu>

source§

fn as_raw_Detail_GraphCutSeamFinderBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GraphCutSeamFinderGpuTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinderGpu>

source§

fn as_raw_Detail_GraphCutSeamFinderGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GraphCutSeamFinderTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinder>

source§

fn as_raw_Detail_GraphCutSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_GraphEdgeTraitConst for BoxedRef<'_, Detail_GraphEdge>

source§

fn as_raw_Detail_GraphEdge( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn from(&self) -> i32

source§

fn to(&self) -> i32

source§

fn weight(&self) -> f32

source§

fn less_than(&self, other: &impl Detail_GraphEdgeTraitConst) -> Result<bool>

source§

fn greater_than(&self, other: &impl Detail_GraphEdgeTraitConst) -> Result<bool>

source§

impl Detail_GraphTraitConst for BoxedRef<'_, Detail_Graph>

source§

fn as_raw_Detail_Graph(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn num_vertices(&self) -> Result<i32>

source§

impl Detail_HomographyBasedEstimatorTraitConst for BoxedRef<'_, Detail_HomographyBasedEstimator>

source§

fn as_raw_Detail_HomographyBasedEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ImageFeaturesTraitConst for BoxedRef<'_, Detail_ImageFeatures>

source§

fn as_raw_Detail_ImageFeatures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn img_idx(&self) -> i32

source§

fn img_size(&self) -> Size

source§

fn keypoints(&self) -> Vector<KeyPoint>

source§

fn descriptors(&self) -> UMat

source§

impl Detail_MatchesInfoTraitConst for BoxedRef<'_, Detail_MatchesInfo>

source§

fn as_raw_Detail_MatchesInfo( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn src_img_idx(&self) -> i32

source§

fn dst_img_idx(&self) -> i32

Images indices (optional)
source§

fn matches(&self) -> Vector<DMatch>

source§

fn inliers_mask(&self) -> Vector<u8>

Geometrically consistent matches mask
source§

fn num_inliers(&self) -> i32

Number of geometrically consistent matches
source§

fn h(&self) -> Mat

Estimated transformation
source§

fn confidence(&self) -> f64

Confidence two images are from the same panorama
source§

impl Detail_MercatorProjectorTraitConst for BoxedRef<'_, Detail_MercatorProjector>

source§

fn as_raw_Detail_MercatorProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_MercatorWarperTraitConst for BoxedRef<'_, Detail_MercatorWarper>

source§

fn as_raw_Detail_MercatorWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_MultiBandBlenderTraitConst for BoxedRef<'_, Detail_MultiBandBlender>

source§

fn as_raw_Detail_MultiBandBlender( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn num_bands(&self) -> Result<i32>

source§

impl Detail_NoBundleAdjusterTraitConst for BoxedRef<'_, Detail_NoBundleAdjuster>

source§

fn as_raw_Detail_NoBundleAdjuster( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_NoExposureCompensatorTraitConst for BoxedRef<'_, Detail_NoExposureCompensator>

source§

fn as_raw_Detail_NoExposureCompensator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_NoSeamFinderTraitConst for BoxedRef<'_, Detail_NoSeamFinder>

source§

fn as_raw_Detail_NoSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PairwiseSeamFinderTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinderGpu>

source§

fn as_raw_Detail_PairwiseSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PairwiseSeamFinderTraitConst for BoxedRef<'_, Detail_PairwiseSeamFinder>

source§

fn as_raw_Detail_PairwiseSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PairwiseSeamFinderTraitConst for BoxedRef<'_, Detail_VoronoiSeamFinder>

source§

fn as_raw_Detail_PairwiseSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PaniniPortraitProjectorTraitConst for BoxedRef<'_, Detail_PaniniPortraitProjector>

source§

fn as_raw_Detail_PaniniPortraitProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn a(&self) -> f32

source§

fn b(&self) -> f32

source§

impl Detail_PaniniPortraitWarperTraitConst for BoxedRef<'_, Detail_PaniniPortraitWarper>

source§

fn as_raw_Detail_PaniniPortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PaniniProjectorTraitConst for BoxedRef<'_, Detail_PaniniProjector>

source§

fn as_raw_Detail_PaniniProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn a(&self) -> f32

source§

fn b(&self) -> f32

source§

impl Detail_PaniniWarperTraitConst for BoxedRef<'_, Detail_PaniniWarper>

source§

fn as_raw_Detail_PaniniWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlanePortraitProjectorTraitConst for BoxedRef<'_, Detail_PlanePortraitProjector>

source§

fn as_raw_Detail_PlanePortraitProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlanePortraitWarperTraitConst for BoxedRef<'_, Detail_PlanePortraitWarper>

source§

fn as_raw_Detail_PlanePortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlaneProjectorTraitConst for BoxedRef<'_, Detail_PlaneProjector>

source§

fn as_raw_Detail_PlaneProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlaneWarperGpuTraitConst for BoxedRef<'_, Detail_PlaneWarperGpu>

source§

fn as_raw_Detail_PlaneWarperGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlaneWarperTraitConst for BoxedRef<'_, Detail_AffineWarper>

source§

fn as_raw_Detail_PlaneWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlaneWarperTraitConst for BoxedRef<'_, Detail_PlaneWarper>

source§

fn as_raw_Detail_PlaneWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_PlaneWarperTraitConst for BoxedRef<'_, Detail_PlaneWarperGpu>

source§

fn as_raw_Detail_PlaneWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_CompressedRectilinearPortraitProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_CompressedRectilinearProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_CylindricalPortraitProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_CylindricalProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_FisheyeProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_MercatorProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_PaniniPortraitProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_PaniniProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_PlanePortraitProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_PlaneProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_ProjectorBase>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_SphericalPortraitProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_SphericalProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_StereographicProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_ProjectorBaseTraitConst for BoxedRef<'_, Detail_TransverseMercatorProjector>

source§

fn as_raw_Detail_ProjectorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn k(&self) -> &[f32; 9]

source§

fn rinv(&self) -> &[f32; 9]

source§

fn r_kinv(&self) -> &[f32; 9]

source§

fn k_rinv(&self) -> &[f32; 9]

source§

fn t(&self) -> &[f32; 3]

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_AffineWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_CompressedRectilinearPortraitWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_CompressedRectilinearWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_CylindricalPortraitWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_CylindricalWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_CylindricalWarperGpu>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_FisheyeWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_MercatorWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_PaniniPortraitWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_PaniniWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_PlanePortraitWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_PlaneWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_PlaneWarperGpu>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_RotationWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_SphericalPortraitWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_SphericalWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_SphericalWarperGpu>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_StereographicWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_RotationWarperTraitConst for BoxedRef<'_, Detail_TransverseMercatorWarper>

source§

fn as_raw_Detail_RotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_DpSeamFinder>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinder>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_GraphCutSeamFinderGpu>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_NoSeamFinder>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_PairwiseSeamFinder>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_SeamFinder>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SeamFinderTraitConst for BoxedRef<'_, Detail_VoronoiSeamFinder>

source§

fn as_raw_Detail_SeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SphericalPortraitProjectorTraitConst for BoxedRef<'_, Detail_SphericalPortraitProjector>

source§

fn as_raw_Detail_SphericalPortraitProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SphericalPortraitWarperTraitConst for BoxedRef<'_, Detail_SphericalPortraitWarper>

source§

fn as_raw_Detail_SphericalPortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SphericalProjectorTraitConst for BoxedRef<'_, Detail_SphericalProjector>

source§

fn as_raw_Detail_SphericalProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SphericalWarperGpuTraitConst for BoxedRef<'_, Detail_SphericalWarperGpu>

source§

fn as_raw_Detail_SphericalWarperGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SphericalWarperTraitConst for BoxedRef<'_, Detail_SphericalWarper>

source§

fn as_raw_Detail_SphericalWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_SphericalWarperTraitConst for BoxedRef<'_, Detail_SphericalWarperGpu>

source§

fn as_raw_Detail_SphericalWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_StereographicProjectorTraitConst for BoxedRef<'_, Detail_StereographicProjector>

source§

fn as_raw_Detail_StereographicProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_StereographicWarperTraitConst for BoxedRef<'_, Detail_StereographicWarper>

source§

fn as_raw_Detail_StereographicWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_TransverseMercatorProjectorTraitConst for BoxedRef<'_, Detail_TransverseMercatorProjector>

source§

fn as_raw_Detail_TransverseMercatorProjector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_TransverseMercatorWarperTraitConst for BoxedRef<'_, Detail_TransverseMercatorWarper>

source§

fn as_raw_Detail_TransverseMercatorWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Detail_VoronoiSeamFinderTraitConst for BoxedRef<'_, Detail_VoronoiSeamFinder>

source§

fn as_raw_Detail_VoronoiSeamFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DetectionBasedTrackerTraitConst for BoxedRef<'_, DetectionBasedTracker>

source§

fn as_raw_DetectionBasedTracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_parameters(&self) -> Result<DetectionBasedTracker_Parameters>

source§

fn get_objects(&self, result: &mut Vector<Rect>) -> Result<()>

source§

fn get_objects_1( &self, result: &mut Vector<DetectionBasedTracker_Object> ) -> Result<()>

source§

fn get_objects_2( &self, result: &mut Vector<DetectionBasedTracker_ExtObject> ) -> Result<()>

source§

impl DetectionBasedTracker_ExtObjectTraitConst for BoxedRef<'_, DetectionBasedTracker_ExtObject>

source§

fn as_raw_DetectionBasedTracker_ExtObject( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn id(&self) -> i32

source§

fn location(&self) -> Rect

source§

fn status(&self) -> DetectionBasedTracker_ObjectStatus

source§

impl DetectionBasedTracker_IDetectorTraitConst for BoxedRef<'_, DetectionBasedTracker_IDetector>

source§

fn as_raw_DetectionBasedTracker_IDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_min_object_size(&self) -> Result<Size>

source§

fn get_max_object_size(&self) -> Result<Size>

source§

impl DetectionBasedTracker_ParametersTraitConst for BoxedRef<'_, DetectionBasedTracker_Parameters>

source§

fn as_raw_DetectionBasedTracker_Parameters( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn max_track_lifetime(&self) -> i32

source§

fn min_detection_period(&self) -> i32

source§

impl DetectionModelTraitConst for BoxedRef<'_, DetectionModel>

source§

fn as_raw_DetectionModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DetectionOutputLayerTraitConst for BoxedRef<'_, DetectionOutputLayer>

source§

fn as_raw_DetectionOutputLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DetectionROITraitConst for BoxedRef<'_, DetectionROI>

source§

fn as_raw_DetectionROI(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f64

scale(size) of the bounding box
source§

fn locations(&self) -> Vector<Point>

set of requested locations to be evaluated
source§

fn confidences(&self) -> Vector<f64>

vector that will contain confidence values for each location
source§

impl DetectorParametersTraitConst for BoxedRef<'_, DetectorParameters>

source§

fn as_raw_DetectorParameters( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn adaptive_thresh_win_size_min(&self) -> i32

minimum window size for adaptive thresholding before finding contours (default 3).
source§

fn adaptive_thresh_win_size_max(&self) -> i32

maximum window size for adaptive thresholding before finding contours (default 23).
source§

fn adaptive_thresh_win_size_step(&self) -> i32

increments from adaptiveThreshWinSizeMin to adaptiveThreshWinSizeMax during the thresholding (default 10).
source§

fn adaptive_thresh_constant(&self) -> f64

constant for adaptive thresholding before finding contours (default 7)
source§

fn min_marker_perimeter_rate(&self) -> f64

determine minimum perimeter for marker contour to be detected. Read more
source§

fn max_marker_perimeter_rate(&self) -> f64

determine maximum perimeter for marker contour to be detected. Read more
source§

fn polygonal_approx_accuracy_rate(&self) -> f64

minimum accuracy during the polygonal approximation process to determine which contours are squares. (default 0.03)
source§

fn min_corner_distance_rate(&self) -> f64

minimum distance between corners for detected markers relative to its perimeter (default 0.05)
source§

fn min_distance_to_border(&self) -> i32

minimum distance of any corner to the image border for detected markers (in pixels) (default 3)
source§

fn min_marker_distance_rate(&self) -> f64

minimum average distance between the corners of the two markers to be grouped (default 0.125). Read more
source§

fn min_group_distance(&self) -> f32

minimum average distance between the corners of the two markers in group to add them to the list of candidates Read more
source§

fn corner_refinement_method(&self) -> i32

default value CORNER_REFINE_NONE
source§

fn corner_refinement_win_size(&self) -> i32

maximum window size for the corner refinement process (in pixels) (default 5). Read more
source§

fn relative_corner_refinment_win_size(&self) -> f32

Dynamic window size for corner refinement relative to Aruco module size (default 0.3). Read more
source§

fn corner_refinement_max_iterations(&self) -> i32

maximum number of iterations for stop criteria of the corner refinement process (default 30).
source§

fn corner_refinement_min_accuracy(&self) -> f64

minimum error for the stop cristeria of the corner refinement process (default: 0.1)
source§

fn marker_border_bits(&self) -> i32

number of bits of the marker border, i.e. marker border width (default 1).
source§

fn perspective_remove_pixel_per_cell(&self) -> i32

number of bits (per dimension) for each cell of the marker when removing the perspective (default 4).
source§

fn perspective_remove_ignored_margin_per_cell(&self) -> f64

width of the margin of pixels on each cell not considered for the determination of the cell bit. Read more
source§

fn max_erroneous_bits_in_border_rate(&self) -> f64

maximum number of accepted erroneous bits in the border (i.e. number of allowed white bits in the border). Read more
source§

fn min_otsu_std_dev(&self) -> f64

minimun standard deviation in pixels values during the decodification step to apply Otsu thresholding (otherwise, all the bits are set to 0 or 1 depending on mean higher than 128 or not) (default 5.0)
source§

fn error_correction_rate(&self) -> f64

error correction rate respect to the maximun error correction capability for each dictionary (default 0.6).
source§

fn april_tag_quad_decimate(&self) -> f32

April :: User-configurable parameters. Read more
source§

fn april_tag_quad_sigma(&self) -> f32

what Gaussian blur should be applied to the segmented image (used for quad detection?)
source§

fn april_tag_min_cluster_pixels(&self) -> i32

reject quads containing too few pixels (default 5).
source§

fn april_tag_max_nmaxima(&self) -> i32

how many corner candidates to consider when segmenting a group of pixels into a quad (default 10).
source§

fn april_tag_critical_rad(&self) -> f32

reject quads where pairs of edges have angles that are close to straight or close to 180 degrees. Read more
source§

fn april_tag_max_line_fit_mse(&self) -> f32

when fitting lines to the contours, what is the maximum mean squared error
source§

fn april_tag_min_white_black_diff(&self) -> i32

add an extra check that the white model must be (overall) brighter than the black model. Read more
source§

fn april_tag_deglitch(&self) -> i32

should the thresholded image be deglitched? Only useful for very noisy images (default 0).
source§

fn detect_inverted_marker(&self) -> bool

to check if there is a white marker. Read more
source§

fn use_aruco3_detection(&self) -> bool

enable the new and faster Aruco detection strategy. Read more
source§

fn min_side_length_canonical_img(&self) -> i32

minimum side length of a marker in the canonical image. Latter is the binarized image in which contours are searched.
source§

fn min_marker_length_ratio_original_img(&self) -> f32

range [0,1], eq (2) from paper. The parameter tau_i has a direct influence on the processing speed.
source§

impl DeviceInfoTraitConst for BoxedRef<'_, DeviceInfo>

source§

fn as_raw_DeviceInfo(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn device_id(&self) -> Result<i32>

Returns system index of the CUDA device starting with 0.
source§

fn name(&self) -> Result<String>

ASCII string identifying device
source§

fn total_global_mem(&self) -> Result<size_t>

global memory available on device in bytes
source§

fn shared_mem_per_block(&self) -> Result<size_t>

shared memory available per block in bytes
source§

fn regs_per_block(&self) -> Result<i32>

32-bit registers available per block
source§

fn warp_size(&self) -> Result<i32>

warp size in threads
source§

fn mem_pitch(&self) -> Result<size_t>

maximum pitch in bytes allowed by memory copies
source§

fn max_threads_per_block(&self) -> Result<i32>

maximum number of threads per block
source§

fn max_threads_dim(&self) -> Result<Vec3i>

maximum size of each dimension of a block
source§

fn max_grid_size(&self) -> Result<Vec3i>

maximum size of each dimension of a grid
source§

fn clock_rate(&self) -> Result<i32>

clock frequency in kilohertz
source§

fn total_const_mem(&self) -> Result<size_t>

constant memory available on device in bytes
source§

fn major_version(&self) -> Result<i32>

major compute capability
source§

fn minor_version(&self) -> Result<i32>

minor compute capability
source§

fn texture_alignment(&self) -> Result<size_t>

alignment requirement for textures
source§

fn texture_pitch_alignment(&self) -> Result<size_t>

pitch alignment requirement for texture references bound to pitched memory
source§

fn multi_processor_count(&self) -> Result<i32>

number of multiprocessors on device
source§

fn kernel_exec_timeout_enabled(&self) -> Result<bool>

specified whether there is a run time limit on kernels
source§

fn integrated(&self) -> Result<bool>

device is integrated as opposed to discrete
source§

fn can_map_host_memory(&self) -> Result<bool>

device can map host memory with cudaHostAlloc/cudaHostGetDevicePointer
source§

fn compute_mode(&self) -> Result<DeviceInfo_ComputeMode>

compute mode
source§

fn max_texture1_d(&self) -> Result<i32>

maximum 1D texture size
source§

fn max_texture1_d_mipmap(&self) -> Result<i32>

maximum 1D mipmapped texture size
source§

fn max_texture1_d_linear(&self) -> Result<i32>

maximum size for 1D textures bound to linear memory
source§

fn max_texture_2d(&self) -> Result<Vec2i>

maximum 2D texture dimensions
source§

fn max_texture_2d_mipmap(&self) -> Result<Vec2i>

maximum 2D mipmapped texture dimensions
source§

fn max_texture_2d_linear(&self) -> Result<Vec3i>

maximum dimensions (width, height, pitch) for 2D textures bound to pitched memory
source§

fn max_texture_2d_gather(&self) -> Result<Vec2i>

maximum 2D texture dimensions if texture gather operations have to be performed
source§

fn max_texture_3d(&self) -> Result<Vec3i>

maximum 3D texture dimensions
source§

fn max_texture_cubemap(&self) -> Result<i32>

maximum Cubemap texture dimensions
source§

fn max_texture1_d_layered(&self) -> Result<Vec2i>

maximum 1D layered texture dimensions
source§

fn max_texture_2d_layered(&self) -> Result<Vec3i>

maximum 2D layered texture dimensions
source§

fn max_texture_cubemap_layered(&self) -> Result<Vec2i>

maximum Cubemap layered texture dimensions
source§

fn max_surface1_d(&self) -> Result<i32>

maximum 1D surface size
source§

fn max_surface_2d(&self) -> Result<Vec2i>

maximum 2D surface dimensions
source§

fn max_surface_3d(&self) -> Result<Vec3i>

maximum 3D surface dimensions
source§

fn max_surface1_d_layered(&self) -> Result<Vec2i>

maximum 1D layered surface dimensions
source§

fn max_surface_2d_layered(&self) -> Result<Vec3i>

maximum 2D layered surface dimensions
source§

fn max_surface_cubemap(&self) -> Result<i32>

maximum Cubemap surface dimensions
source§

fn max_surface_cubemap_layered(&self) -> Result<Vec2i>

maximum Cubemap layered surface dimensions
source§

fn surface_alignment(&self) -> Result<size_t>

alignment requirements for surfaces
source§

fn concurrent_kernels(&self) -> Result<bool>

device can possibly execute multiple kernels concurrently
source§

fn ecc_enabled(&self) -> Result<bool>

device has ECC support enabled
source§

fn pci_bus_id(&self) -> Result<i32>

PCI bus ID of the device
source§

fn pci_device_id(&self) -> Result<i32>

PCI device ID of the device
source§

fn pci_domain_id(&self) -> Result<i32>

PCI domain ID of the device
source§

fn tcc_driver(&self) -> Result<bool>

true if device is a Tesla device using TCC driver, false otherwise
source§

fn async_engine_count(&self) -> Result<i32>

number of asynchronous engines
source§

fn unified_addressing(&self) -> Result<bool>

device shares a unified address space with the host
source§

fn memory_clock_rate(&self) -> Result<i32>

peak memory clock frequency in kilohertz
source§

fn memory_bus_width(&self) -> Result<i32>

global memory bus width in bits
source§

fn l2_cache_size(&self) -> Result<i32>

size of L2 cache in bytes
source§

fn max_threads_per_multi_processor(&self) -> Result<i32>

maximum resident threads per multiprocessor
source§

fn query_memory( &self, total_memory: &mut size_t, free_memory: &mut size_t ) -> Result<()>

gets free and total device memory
source§

fn free_memory(&self) -> Result<size_t>

source§

fn total_memory(&self) -> Result<size_t>

source§

fn supports(&self, feature_set: FeatureSet) -> Result<bool>

Provides information on CUDA feature support. Read more
source§

fn is_compatible(&self) -> Result<bool>

Checks the CUDA module and device compatibility. Read more
source§

impl DeviceTraitConst for BoxedRef<'_, Device>

source§

fn as_raw_Device(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn name(&self) -> Result<String>

source§

fn extensions(&self) -> Result<String>

source§

fn is_extension_supported(&self, extension_name: &str) -> Result<bool>

source§

fn version(&self) -> Result<String>

source§

fn vendor_name(&self) -> Result<String>

source§

fn opencl_c_version(&self) -> Result<String>

source§

fn opencl_version(&self) -> Result<String>

source§

fn device_version_major(&self) -> Result<i32>

source§

fn device_version_minor(&self) -> Result<i32>

source§

fn driver_version(&self) -> Result<String>

source§

fn ptr(&self) -> Result<*mut c_void>

source§

fn typ(&self) -> Result<i32>

source§

fn address_bits(&self) -> Result<i32>

source§

fn available(&self) -> Result<bool>

source§

fn compiler_available(&self) -> Result<bool>

source§

fn linker_available(&self) -> Result<bool>

source§

fn double_fp_config(&self) -> Result<i32>

source§

fn single_fp_config(&self) -> Result<i32>

source§

fn half_fp_config(&self) -> Result<i32>

source§

fn endian_little(&self) -> Result<bool>

source§

fn error_correction_support(&self) -> Result<bool>

source§

fn execution_capabilities(&self) -> Result<i32>

source§

fn global_mem_cache_size(&self) -> Result<size_t>

source§

fn global_mem_cache_type(&self) -> Result<i32>

source§

fn global_mem_cache_line_size(&self) -> Result<i32>

source§

fn global_mem_size(&self) -> Result<size_t>

source§

fn local_mem_size(&self) -> Result<size_t>

source§

fn local_mem_type(&self) -> Result<i32>

source§

fn host_unified_memory(&self) -> Result<bool>

source§

fn image_support(&self) -> Result<bool>

source§

fn image_from_buffer_support(&self) -> Result<bool>

source§

fn image_pitch_alignment(&self) -> Result<u32>

source§

fn image_base_address_alignment(&self) -> Result<u32>

source§

fn intel_subgroups_support(&self) -> Result<bool>

deprecated, use isExtensionSupported() method (probably with “cl_khr_subgroups” value)
source§

fn image_2d_max_width(&self) -> Result<size_t>

source§

fn image_2d_max_height(&self) -> Result<size_t>

source§

fn image_3d_max_width(&self) -> Result<size_t>

source§

fn image_3d_max_height(&self) -> Result<size_t>

source§

fn image_3d_max_depth(&self) -> Result<size_t>

source§

fn image_max_buffer_size(&self) -> Result<size_t>

source§

fn image_max_array_size(&self) -> Result<size_t>

source§

fn vendor_id(&self) -> Result<i32>

source§

fn is_amd(&self) -> Result<bool>

source§

fn is_intel(&self) -> Result<bool>

source§

fn is_n_vidia(&self) -> Result<bool>

source§

fn max_clock_frequency(&self) -> Result<i32>

source§

fn max_compute_units(&self) -> Result<i32>

source§

fn max_constant_args(&self) -> Result<i32>

source§

fn max_constant_buffer_size(&self) -> Result<size_t>

source§

fn max_mem_alloc_size(&self) -> Result<size_t>

source§

fn max_parameter_size(&self) -> Result<size_t>

source§

fn max_read_image_args(&self) -> Result<i32>

source§

fn max_write_image_args(&self) -> Result<i32>

source§

fn max_samplers(&self) -> Result<i32>

source§

fn max_work_group_size(&self) -> Result<size_t>

source§

fn max_work_item_dims(&self) -> Result<i32>

source§

fn max_work_item_sizes(&self, unnamed: &mut size_t) -> Result<()>

source§

fn mem_base_addr_align(&self) -> Result<i32>

source§

fn native_vector_width_char(&self) -> Result<i32>

source§

fn native_vector_width_short(&self) -> Result<i32>

source§

fn native_vector_width_int(&self) -> Result<i32>

source§

fn native_vector_width_long(&self) -> Result<i32>

source§

fn native_vector_width_float(&self) -> Result<i32>

source§

fn native_vector_width_double(&self) -> Result<i32>

source§

fn native_vector_width_half(&self) -> Result<i32>

source§

fn preferred_vector_width_char(&self) -> Result<i32>

source§

fn preferred_vector_width_short(&self) -> Result<i32>

source§

fn preferred_vector_width_int(&self) -> Result<i32>

source§

fn preferred_vector_width_long(&self) -> Result<i32>

source§

fn preferred_vector_width_float(&self) -> Result<i32>

source§

fn preferred_vector_width_double(&self) -> Result<i32>

source§

fn preferred_vector_width_half(&self) -> Result<i32>

source§

fn printf_buffer_size(&self) -> Result<size_t>

source§

fn profiling_timer_resolution(&self) -> Result<size_t>

source§

fn empty(&self) -> Result<bool>

source§

impl DictTraitConst for BoxedRef<'_, Dict>

source§

fn as_raw_Dict(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has(&self, key: &str) -> Result<bool>

Checks a presence of the @p key in the dictionary.
source§

unsafe fn ptr(&self, key: &str) -> Result<DictValue>

If the @p key in the dictionary then returns pointer to its value, else returns NULL. Read more
source§

fn get(&self, key: &str) -> Result<DictValue>

If the @p key in the dictionary then returns its value, else an error will be generated.
source§

impl DictTraitConst for BoxedRef<'_, LayerParams>

source§

fn as_raw_Dict(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has(&self, key: &str) -> Result<bool>

Checks a presence of the @p key in the dictionary.
source§

unsafe fn ptr(&self, key: &str) -> Result<DictValue>

If the @p key in the dictionary then returns pointer to its value, else returns NULL. Read more
source§

fn get(&self, key: &str) -> Result<DictValue>

If the @p key in the dictionary then returns its value, else an error will be generated.
source§

impl DictValueTraitConst for BoxedRef<'_, DictValue>

source§

fn as_raw_DictValue(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_str(&self, idx: i32) -> Result<String>

C++ default parameters Read more
source§

fn get_str_def(&self) -> Result<String>

source§

fn get_f64(&self, idx: i32) -> Result<f64>

C++ default parameters Read more
source§

fn get_f64_def(&self) -> Result<f64>

source§

fn get_i32(&self, idx: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_i32_def(&self) -> Result<i32>

source§

fn get_i64(&self, idx: i32) -> Result<i64>

C++ default parameters Read more
source§

fn get_i64_def(&self) -> Result<i64>

source§

fn size(&self) -> Result<i32>

source§

fn is_int(&self) -> Result<bool>

source§

fn is_string(&self) -> Result<bool>

source§

fn is_real(&self) -> Result<bool>

source§

fn get_int_value(&self, idx: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_value_def(&self) -> Result<i32>

source§

fn get_real_value(&self, idx: i32) -> Result<f64>

C++ default parameters Read more
source§

fn get_real_value_def(&self) -> Result<f64>

source§

fn get_string_value(&self, idx: i32) -> Result<String>

C++ default parameters Read more
source§

fn get_string_value_def(&self) -> Result<String>

source§

impl DictionaryTraitConst for BoxedRef<'_, Dictionary>

source§

fn as_raw_Dictionary(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn bytes_list(&self) -> Mat

marker code information. See class description for more details
source§

fn marker_size(&self) -> i32

number of bits per dimension
source§

fn max_correction_bits(&self) -> i32

maximum number of bits that can be corrected
source§

fn identify( &self, only_bits: &impl MatTraitConst, idx: &mut i32, rotation: &mut i32, max_correction_rate: f64 ) -> Result<bool>

Given a matrix of bits. Returns whether if marker is identified or not. Read more
source§

fn get_distance_to_id( &self, bits: &impl ToInputArray, id: i32, all_rotations: bool ) -> Result<i32>

Returns Hamming distance of the input bits to the specific id. Read more
source§

fn get_distance_to_id_def( &self, bits: &impl ToInputArray, id: i32 ) -> Result<i32>

Returns Hamming distance of the input bits to the specific id. Read more
source§

fn generate_image_marker( &self, id: i32, side_pixels: i32, _img: &mut impl ToOutputArray, border_bits: i32 ) -> Result<()>

Generate a canonical marker image Read more
source§

fn generate_image_marker_def( &self, id: i32, side_pixels: i32, _img: &mut impl ToOutputArray ) -> Result<()>

Generate a canonical marker image Read more
source§

impl DisparityFilterTraitConst for BoxedRef<'_, DisparityFilter>

source§

fn as_raw_DisparityFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DisparityFilterTraitConst for BoxedRef<'_, DisparityWLSFilter>

source§

fn as_raw_DisparityFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DisparityWLSFilterTraitConst for BoxedRef<'_, DisparityWLSFilter>

source§

fn as_raw_DisparityWLSFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DnnSuperResImplTraitConst for BoxedRef<'_, DnnSuperResImpl>

source§

fn as_raw_DnnSuperResImpl( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl DownhillSolverTraitConst for BoxedRef<'_, DownhillSolver>

source§

fn as_raw_DownhillSolver( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_init_step(&self, step: &mut impl ToOutputArray) -> Result<()>

Returns the initial step that will be used in downhill simplex algorithm. Read more
source§

impl DualTVL1OpticalFlowTraitConst for BoxedRef<'_, DualTVL1OpticalFlow>

source§

fn as_raw_DualTVL1OpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_tau(&self) -> Result<f64>

Time step of the numerical scheme Read more
source§

fn get_lambda(&self) -> Result<f64>

Weight parameter for the data term, attachment parameter Read more
source§

fn get_theta(&self) -> Result<f64>

Weight parameter for (u - v)^2, tightness parameter Read more
source§

fn get_gamma(&self) -> Result<f64>

coefficient for additional illumination variation term Read more
source§

fn get_scales_number(&self) -> Result<i32>

Number of scales used to create the pyramid of images Read more
source§

fn get_warpings_number(&self) -> Result<i32>

Number of warpings per scale Read more
source§

fn get_epsilon(&self) -> Result<f64>

Stopping criterion threshold used in the numerical scheme, which is a trade-off between precision and running time Read more
source§

fn get_inner_iterations(&self) -> Result<i32>

Inner iterations (between outlier filtering) used in the numerical scheme Read more
source§

fn get_outer_iterations(&self) -> Result<i32>

Outer iterations (number of inner loops) used in the numerical scheme Read more
source§

fn get_use_initial_flow(&self) -> Result<bool>

Use initial flow Read more
source§

fn get_scale_step(&self) -> Result<f64>

Step between scales (<1) Read more
source§

fn get_median_filtering(&self) -> Result<i32>

Median filter kernel size (1 = no filter) (3 or 5) Read more
source§

impl Dynafu_DynaFuTraitConst for BoxedRef<'_, Dynafu_DynaFu>

source§

fn as_raw_Dynafu_DynaFu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_params(&self) -> Result<Kinfu_Params>

Get current parameters
source§

fn render( &self, image: &mut impl ToOutputArray, camera_pose: Matx44f ) -> Result<()>

Renders a volume into an image Read more
source§

fn render_def(&self, image: &mut impl ToOutputArray) -> Result<()>

Renders a volume into an image Read more
source§

fn get_cloud( &self, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Gets points and normals of current 3d mesh Read more
source§

fn get_points(&self, points: &mut impl ToOutputArray) -> Result<()>

Gets points of current 3d mesh Read more
source§

fn get_normals( &self, points: &impl ToInputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Calculates normals for given points Read more
source§

fn get_pose(&self) -> Result<Affine3f>

Get current pose in voxel space
source§

fn get_nodes_pos(&self) -> Result<Vector<Point3f>>

source§

fn march_cubes( &self, vertices: &mut impl ToOutputArray, edges: &mut impl ToOutputArray ) -> Result<()>

source§

impl ELULayerTraitConst for BoxedRef<'_, ELULayer>

source§

fn as_raw_ELULayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn alpha(&self) -> f32

source§

impl EMDHistogramCostExtractorTraitConst for BoxedRef<'_, EMDHistogramCostExtractor>

source§

fn as_raw_EMDHistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_norm_flag(&self) -> Result<i32>

source§

impl EMDL1HistogramCostExtractorTraitConst for BoxedRef<'_, EMDL1HistogramCostExtractor>

source§

fn as_raw_EMDL1HistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl EMTraitConst for BoxedRef<'_, EM>

source§

fn as_raw_EM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_clusters_number(&self) -> Result<i32>

The number of mixture components in the Gaussian mixture model. Default value of the parameter is EM::DEFAULT_NCLUSTERS=5. Some of %EM implementation could determine the optimal number of mixtures within a specified value range, but that is not the case in ML yet. Read more
source§

fn get_covariance_matrix_type(&self) -> Result<i32>

Constraint on covariance matrices which defines type of matrices. See EM::Types. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

The termination criteria of the %EM algorithm. The %EM algorithm can be terminated by the number of iterations termCrit.maxCount (number of M-steps) or when relative change of likelihood logarithm is less than termCrit.epsilon. Default maximum number of iterations is EM::DEFAULT_MAX_ITERS=100. Read more
source§

fn get_weights(&self) -> Result<Mat>

Returns weights of the mixtures Read more
source§

fn get_means(&self) -> Result<Mat>

Returns the cluster centers (means of the Gaussian mixture) Read more
source§

fn get_covs(&self, covs: &mut Vector<Mat>) -> Result<()>

Returns covariation matrices Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Returns posterior probabilities for the provided samples Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Returns posterior probabilities for the provided samples Read more
source§

fn predict2( &self, sample: &impl ToInputArray, probs: &mut impl ToOutputArray ) -> Result<Vec2d>

Returns a likelihood logarithm value and an index of the most probable mixture component for the given sample. Read more
source§

impl ERFilterTraitConst for BoxedRef<'_, ERFilter>

source§

fn as_raw_ERFilter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_rejected(&self) -> Result<i32>

source§

impl ERFilter_CallbackTraitConst for BoxedRef<'_, ERFilter_Callback>

source§

fn as_raw_ERFilter_Callback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ERStatTraitConst for BoxedRef<'_, ERStat>

source§

fn as_raw_ERStat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pixel(&self) -> i32

seed point and the threshold (max grey-level value)
source§

fn level(&self) -> i32

source§

fn area(&self) -> i32

incrementally computable features
source§

fn perimeter(&self) -> i32

source§

fn euler(&self) -> i32

Euler’s number
source§

fn rect(&self) -> Rect

source§

fn raw_moments(&self) -> &[f64; 2]

order 1 raw moments to derive the centroid
source§

fn central_moments(&self) -> &[f64; 3]

order 2 central moments to construct the covariance matrix
source§

fn med_crossings(&self) -> f32

median of the crossings at three different height levels
source§

fn hole_area_ratio(&self) -> f32

2nd stage features
source§

fn convex_hull_ratio(&self) -> f32

source§

fn num_inflexion_points(&self) -> f32

source§

fn probability(&self) -> f64

probability that the ER belongs to the class we are looking for
source§

fn local_maxima(&self) -> bool

whenever the regions is a local maxima of the probability
source§

impl EdgeAwareInterpolatorTraitConst for BoxedRef<'_, EdgeAwareInterpolator>

source§

fn as_raw_EdgeAwareInterpolator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl EdgeBoxesTraitConst for BoxedRef<'_, EdgeBoxes>

source§

fn as_raw_EdgeBoxes(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_alpha(&self) -> Result<f32>

Returns the step size of sliding window search.
source§

fn get_beta(&self) -> Result<f32>

Returns the nms threshold for object proposals.
source§

fn get_eta(&self) -> Result<f32>

Returns adaptation rate for nms threshold.
source§

fn get_min_score(&self) -> Result<f32>

Returns the min score of boxes to detect.
source§

fn get_max_boxes(&self) -> Result<i32>

Returns the max number of boxes to detect.
source§

fn get_edge_min_mag(&self) -> Result<f32>

Returns the edge min magnitude.
source§

fn get_edge_merge_thr(&self) -> Result<f32>

Returns the edge merge threshold.
source§

fn get_cluster_min_mag(&self) -> Result<f32>

Returns the cluster min magnitude.
source§

fn get_max_aspect_ratio(&self) -> Result<f32>

Returns the max aspect ratio of boxes.
source§

fn get_min_box_area(&self) -> Result<f32>

Returns the minimum area of boxes.
source§

fn get_gamma(&self) -> Result<f32>

Returns the affinity sensitivity.
source§

fn get_kappa(&self) -> Result<f32>

Returns the scale sensitivity.
source§

impl EdgeDrawingTraitConst for BoxedRef<'_, EdgeDrawing>

source§

fn as_raw_EdgeDrawing(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn params(&self) -> EdgeDrawing_Params

source§

fn get_segment_indices_of_lines(&self) -> Result<Vector<i32>>

Returns for each line found in detectLines() its edge segment index in getSegments()
source§

impl EigenFaceRecognizerTraitConst for BoxedRef<'_, EigenFaceRecognizer>

source§

fn as_raw_EigenFaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl EinsumLayerTraitConst for BoxedRef<'_, EinsumLayer>

source§

fn as_raw_EinsumLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Elliptic_KeyPointTraitConst for BoxedRef<'_, Elliptic_KeyPoint>

source§

fn as_raw_Elliptic_KeyPoint( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn axes(&self) -> Size_<f32>

the lengths of the major and minor ellipse axes
source§

fn si(&self) -> f32

the integration scale at which the parameters were estimated
source§

fn transf(&self) -> Matx23f

the transformation between image space and local patch space
source§

impl EltwiseLayerInt8TraitConst for BoxedRef<'_, EltwiseLayerInt8>

source§

fn as_raw_EltwiseLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl EltwiseLayerTraitConst for BoxedRef<'_, EltwiseLayer>

source§

fn as_raw_EltwiseLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ErfLayerTraitConst for BoxedRef<'_, ErfLayer>

source§

fn as_raw_ErfLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl EstimateParametersTraitConst for BoxedRef<'_, EstimateParameters>

source§

fn as_raw_EstimateParameters( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pattern(&self) -> PatternPositionType

source§

fn use_extrinsic_guess(&self) -> bool

source§

fn solve_pnp_method(&self) -> i32

source§

impl EventTraitConst for BoxedRef<'_, Event>

source§

fn as_raw_Event(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn query_if_complete(&self) -> Result<bool>

queries an event’s status
source§

impl ExceptionTraitConst for BoxedRef<'_, Exception>

source§

fn as_raw_Exception(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn msg(&self) -> String

the formatted error message
source§

fn code(&self) -> i32

error code see also: CVStatus
source§

fn err(&self) -> String

error description
source§

fn func(&self) -> String

function name. Available only when the compiler supports getting it
source§

fn file(&self) -> String

source file name where the error has occurred
source§

fn line(&self) -> i32

line number in the source file where the error has occurred
source§

fn what(&self) -> Result<String>

! \return the error description and the context as a text string.
source§

impl ExpLayerTraitConst for BoxedRef<'_, ExpLayer>

source§

fn as_raw_ExpLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn base(&self) -> f32

source§

fn scale(&self) -> f32

source§

fn shift(&self) -> f32

source§

impl ExpandLayerTraitConst for BoxedRef<'_, ExpandLayer>

source§

fn as_raw_ExpandLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FREAKTraitConst for BoxedRef<'_, FREAK>

source§

fn as_raw_FREAK(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_orientation_normalized(&self) -> Result<bool>

source§

fn get_scale_normalized(&self) -> Result<bool>

source§

fn get_pattern_scale(&self) -> Result<f64>

source§

fn get_n_octaves(&self) -> Result<i32>

source§

fn get_default_name(&self) -> Result<String>

source§

impl FaceDetectorYNTraitConst for BoxedRef<'_, FaceDetectorYN>

source§

fn as_raw_FaceDetectorYN( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FaceRecognizerSFTraitConst for BoxedRef<'_, FaceRecognizerSF>

source§

fn as_raw_FaceRecognizerSF( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn align_crop( &self, src_img: &impl ToInputArray, face_box: &impl ToInputArray, aligned_img: &mut impl ToOutputArray ) -> Result<()>

Aligning image to put face on the standard position Read more
source§

fn match_( &self, face_feature1: &impl ToInputArray, face_feature2: &impl ToInputArray, dis_type: i32 ) -> Result<f64>

Calculating the distance between two face features Read more
source§

fn match__def( &self, face_feature1: &impl ToInputArray, face_feature2: &impl ToInputArray ) -> Result<f64>

Calculating the distance between two face features Read more
source§

impl FaceRecognizerTraitConst for BoxedRef<'_, BasicFaceRecognizer>

source§

fn as_raw_FaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict_label(&self, src: &impl ToInputArray) -> Result<i32>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict( &self, src: &impl ToInputArray, label: &mut i32, confidence: &mut f64 ) -> Result<()>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict_collect( &self, src: &impl ToInputArray, collector: Ptr<PredictCollector> ) -> Result<()>

if implemented - send all result of prediction to collector that can be used for somehow custom result handling Read more
source§

fn write(&self, filename: &str) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn write_1(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn empty(&self) -> Result<bool>

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
source§

fn get_label_info(&self, label: i32) -> Result<String>

Gets string information by label. Read more
source§

fn get_labels_by_string(&self, str: &str) -> Result<Vector<i32>>

Gets vector of labels by string. Read more
source§

fn get_threshold(&self) -> Result<f64>

threshold parameter accessor - required for default BestMinDist collector
source§

impl FaceRecognizerTraitConst for BoxedRef<'_, EigenFaceRecognizer>

source§

fn as_raw_FaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict_label(&self, src: &impl ToInputArray) -> Result<i32>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict( &self, src: &impl ToInputArray, label: &mut i32, confidence: &mut f64 ) -> Result<()>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict_collect( &self, src: &impl ToInputArray, collector: Ptr<PredictCollector> ) -> Result<()>

if implemented - send all result of prediction to collector that can be used for somehow custom result handling Read more
source§

fn write(&self, filename: &str) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn write_1(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn empty(&self) -> Result<bool>

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
source§

fn get_label_info(&self, label: i32) -> Result<String>

Gets string information by label. Read more
source§

fn get_labels_by_string(&self, str: &str) -> Result<Vector<i32>>

Gets vector of labels by string. Read more
source§

fn get_threshold(&self) -> Result<f64>

threshold parameter accessor - required for default BestMinDist collector
source§

impl FaceRecognizerTraitConst for BoxedRef<'_, FaceRecognizer>

source§

fn as_raw_FaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict_label(&self, src: &impl ToInputArray) -> Result<i32>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict( &self, src: &impl ToInputArray, label: &mut i32, confidence: &mut f64 ) -> Result<()>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict_collect( &self, src: &impl ToInputArray, collector: Ptr<PredictCollector> ) -> Result<()>

if implemented - send all result of prediction to collector that can be used for somehow custom result handling Read more
source§

fn write(&self, filename: &str) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn write_1(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn empty(&self) -> Result<bool>

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
source§

fn get_label_info(&self, label: i32) -> Result<String>

Gets string information by label. Read more
source§

fn get_labels_by_string(&self, str: &str) -> Result<Vector<i32>>

Gets vector of labels by string. Read more
source§

fn get_threshold(&self) -> Result<f64>

threshold parameter accessor - required for default BestMinDist collector
source§

impl FaceRecognizerTraitConst for BoxedRef<'_, FisherFaceRecognizer>

source§

fn as_raw_FaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict_label(&self, src: &impl ToInputArray) -> Result<i32>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict( &self, src: &impl ToInputArray, label: &mut i32, confidence: &mut f64 ) -> Result<()>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict_collect( &self, src: &impl ToInputArray, collector: Ptr<PredictCollector> ) -> Result<()>

if implemented - send all result of prediction to collector that can be used for somehow custom result handling Read more
source§

fn write(&self, filename: &str) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn write_1(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn empty(&self) -> Result<bool>

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
source§

fn get_label_info(&self, label: i32) -> Result<String>

Gets string information by label. Read more
source§

fn get_labels_by_string(&self, str: &str) -> Result<Vector<i32>>

Gets vector of labels by string. Read more
source§

fn get_threshold(&self) -> Result<f64>

threshold parameter accessor - required for default BestMinDist collector
source§

impl FaceRecognizerTraitConst for BoxedRef<'_, LBPHFaceRecognizer>

source§

fn as_raw_FaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict_label(&self, src: &impl ToInputArray) -> Result<i32>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict( &self, src: &impl ToInputArray, label: &mut i32, confidence: &mut f64 ) -> Result<()>

Predicts a label and associated confidence (e.g. distance) for a given input image. Read more
source§

fn predict_collect( &self, src: &impl ToInputArray, collector: Ptr<PredictCollector> ) -> Result<()>

if implemented - send all result of prediction to collector that can be used for somehow custom result handling Read more
source§

fn write(&self, filename: &str) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn write_1(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Saves a FaceRecognizer and its model state. Read more
source§

fn empty(&self) -> Result<bool>

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
source§

fn get_label_info(&self, label: i32) -> Result<String>

Gets string information by label. Read more
source§

fn get_labels_by_string(&self, str: &str) -> Result<Vector<i32>>

Gets vector of labels by string. Read more
source§

fn get_threshold(&self) -> Result<f64>

threshold parameter accessor - required for default BestMinDist collector
source§

impl FacemarkAAMTraitConst for BoxedRef<'_, FacemarkAAM>

source§

fn as_raw_FacemarkAAM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkAAM_ConfigTraitConst for BoxedRef<'_, FacemarkAAM_Config>

source§

fn as_raw_FacemarkAAM_Config( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn r(&self) -> Mat

source§

fn t(&self) -> Point2f

source§

fn scale(&self) -> f32

source§

fn model_scale_idx(&self) -> i32

source§

impl FacemarkAAM_DataTraitConst for BoxedRef<'_, FacemarkAAM_Data>

source§

fn as_raw_FacemarkAAM_Data( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn s0(&self) -> Vector<Point2f>

source§

impl FacemarkAAM_ModelTraitConst for BoxedRef<'_, FacemarkAAM_Model>

source§

fn as_raw_FacemarkAAM_Model( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scales(&self) -> Vector<f32>

source§

fn triangles(&self) -> Vector<Vec3i>

source§

fn textures(&self) -> Vector<FacemarkAAM_Model_Texture>

source§

fn s0(&self) -> Vector<Point2f>

source§

fn s(&self) -> Mat

source§

fn q(&self) -> Mat

source§

impl FacemarkAAM_Model_TextureTraitConst for BoxedRef<'_, FacemarkAAM_Model_Texture>

source§

fn as_raw_FacemarkAAM_Model_Texture( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn max_m(&self) -> i32

unused delete
source§

fn resolution(&self) -> Rect

source§

fn a(&self) -> Mat

source§

fn a0(&self) -> Mat

source§

fn aa(&self) -> Mat

source§

fn aa0(&self) -> Mat

source§

fn texture_idx(&self) -> Vector<Vector<Point>>

source§

fn base_shape(&self) -> Vector<Point2f>

source§

fn ind1(&self) -> Vector<i32>

source§

fn ind2(&self) -> Vector<i32>

source§

impl FacemarkAAM_ParamsTraitConst for BoxedRef<'_, FacemarkAAM_Params>

source§

fn as_raw_FacemarkAAM_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn model_filename(&self) -> String

source§

fn m(&self) -> i32

source§

fn n(&self) -> i32

source§

fn n_iter(&self) -> i32

source§

fn verbose(&self) -> bool

source§

fn save_model(&self) -> bool

source§

fn max_m(&self) -> i32

source§

fn max_n(&self) -> i32

source§

fn texture_max_m(&self) -> i32

source§

fn scales(&self) -> Vector<f32>

source§

fn write(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

\brief Read parameters from file, currently unused
source§

impl FacemarkKazemiTraitConst for BoxedRef<'_, FacemarkKazemi>

source§

fn as_raw_FacemarkKazemi( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkKazemi_ParamsTraitConst for BoxedRef<'_, FacemarkKazemi_Params>

source§

fn as_raw_FacemarkKazemi_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn cascade_depth(&self) -> u32

cascade_depth This stores the deapth of cascade used for training.
source§

fn tree_depth(&self) -> u32

tree_depth This stores the max height of the regression tree built.
source§

fn num_trees_per_cascade_level(&self) -> u32

num_trees_per_cascade_level This stores number of trees fit per cascade level.
source§

fn learning_rate(&self) -> f32

learning_rate stores the learning rate in gradient boosting, also referred as shrinkage.
source§

fn oversampling_amount(&self) -> u32

oversampling_amount stores number of initialisations used to create training samples.
source§

fn num_test_coordinates(&self) -> u32

num_test_coordinates stores number of test coordinates.
source§

fn lambda(&self) -> f32

lambda stores a value to calculate probability of closeness of two coordinates.
source§

fn num_test_splits(&self) -> u32

num_test_splits stores number of random test splits generated.
source§

fn configfile(&self) -> String

configfile stores the name of the file containing the values of training parameters
source§

impl FacemarkLBFTraitConst for BoxedRef<'_, FacemarkLBF>

source§

fn as_raw_FacemarkLBF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkLBF_ParamsTraitConst for BoxedRef<'_, FacemarkLBF_Params>

source§

fn as_raw_FacemarkLBF_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn shape_offset(&self) -> f64

source§

fn cascade_face(&self) -> String

source§

fn verbose(&self) -> bool

source§

fn n_landmarks(&self) -> i32

source§

fn init_shape_n(&self) -> i32

source§

fn stages_n(&self) -> i32

source§

fn tree_n(&self) -> i32

source§

fn tree_depth(&self) -> i32

source§

fn bagging_overlap(&self) -> f64

source§

fn model_filename(&self) -> String

source§

fn save_model(&self) -> bool

flag to save the trained model or not
source§

fn seed(&self) -> u32

seed for shuffling the training data
source§

fn feats_m(&self) -> Vector<i32>

source§

fn radius_m(&self) -> Vector<f64>

source§

fn detect_roi(&self) -> Rect

source§

fn write(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

impl FacemarkTrainTraitConst for BoxedRef<'_, FacemarkAAM>

source§

fn as_raw_FacemarkTrain( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTrainTraitConst for BoxedRef<'_, FacemarkLBF>

source§

fn as_raw_FacemarkTrain( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTrainTraitConst for BoxedRef<'_, FacemarkTrain>

source§

fn as_raw_FacemarkTrain( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTraitConst for BoxedRef<'_, Facemark>

source§

fn as_raw_Facemark(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTraitConst for BoxedRef<'_, FacemarkAAM>

source§

fn as_raw_Facemark(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTraitConst for BoxedRef<'_, FacemarkKazemi>

source§

fn as_raw_Facemark(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTraitConst for BoxedRef<'_, FacemarkLBF>

source§

fn as_raw_Facemark(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FacemarkTraitConst for BoxedRef<'_, FacemarkTrain>

source§

fn as_raw_Facemark(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FarnebackOpticalFlowTraitConst for BoxedRef<'_, FarnebackOpticalFlow>

source§

fn as_raw_FarnebackOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_levels(&self) -> Result<i32>

source§

fn get_pyr_scale(&self) -> Result<f64>

source§

fn get_fast_pyramids(&self) -> Result<bool>

source§

fn get_win_size(&self) -> Result<i32>

source§

fn get_num_iters(&self) -> Result<i32>

source§

fn get_poly_n(&self) -> Result<i32>

source§

fn get_poly_sigma(&self) -> Result<f64>

source§

fn get_flags(&self) -> Result<i32>

source§

impl FastBilateralSolverFilterTraitConst for BoxedRef<'_, FastBilateralSolverFilter>

source§

fn as_raw_FastBilateralSolverFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FastFeatureDetectorTraitConst for BoxedRef<'_, FastFeatureDetector>

source§

impl FastGlobalSmootherFilterTraitConst for BoxedRef<'_, FastGlobalSmootherFilter>

source§

fn as_raw_FastGlobalSmootherFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FastICPOdometryTraitConst for BoxedRef<'_, FastICPOdometry>

source§

impl FastLineDetectorTraitConst for BoxedRef<'_, FastLineDetector>

source§

fn as_raw_FastLineDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FastMarchingMethodTraitConst for BoxedRef<'_, FastMarchingMethod>

source§

fn as_raw_FastMarchingMethod( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn distance_map(&self) -> Result<Mat>

Returns Read more
source§

impl Feature2DTraitConst for BoxedRef<'_, AKAZE>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, AffineFeature>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, AffineFeature2D>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, AgastFeatureDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, BEBLID>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, BRISK>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, BoostDesc>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, BriefDescriptorExtractor>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, CUDA_FastFeatureDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, CUDA_Feature2DAsync>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, CUDA_ORB>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, DAISY>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, FREAK>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, FastFeatureDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, Feature2D>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, GFTTDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, HarrisLaplaceFeatureDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, KAZE>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, LATCH>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, LUCID>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, MSDDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, MSER>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, ORB>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, SIFT>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, SURF>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, SimpleBlobDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, StarDetector>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, TBMR>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, TEBLID>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl Feature2DTraitConst for BoxedRef<'_, VGG>

source§

fn as_raw_Feature2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn descriptor_size(&self) -> Result<i32>

source§

fn descriptor_type(&self) -> Result<i32>

source§

fn default_norm(&self) -> Result<i32>

source§

fn write(&self, file_name: &str) -> Result<()>

source§

fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn empty(&self) -> Result<bool>

Return true if detector object is empty
source§

fn get_default_name(&self) -> Result<String>

source§

fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str ) -> Result<()>

source§

fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str ) -> Result<()>

source§

impl FileNodeIteratorTraitConst for BoxedRef<'_, FileNodeIterator>

source§

fn as_raw_FileNodeIterator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn try_deref(&self) -> Result<FileNode>

returns the currently observed element
source§

fn remaining(&self) -> Result<size_t>

returns the number of remaining (not read yet) elements
source§

fn equal_to(&self, it: &impl FileNodeIteratorTraitConst) -> Result<bool>

source§

impl FileNodeTraitConst for BoxedRef<'_, FileNode>

source§

fn as_raw_FileNode(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn block_idx(&self) -> size_t

source§

fn ofs(&self) -> size_t

source§

fn get(&self, nodename: &str) -> Result<FileNode>

Returns element of a mapping node or a sequence node. Read more
source§

fn get_node(&self, nodename: &str) -> Result<FileNode>

Returns element of a mapping node or a sequence node. Read more
source§

fn at(&self, i: i32) -> Result<FileNode>

Returns element of a mapping node or a sequence node. Read more
source§

fn keys(&self) -> Result<Vector<String>>

Returns keys of a mapping node. Read more
source§

fn typ(&self) -> Result<i32>

Returns type of the node. Read more
source§

fn empty(&self) -> Result<bool>

returns true if the node is empty
source§

fn is_none(&self) -> Result<bool>

returns true if the node is a “none” object
source§

fn is_seq(&self) -> Result<bool>

returns true if the node is a sequence
source§

fn is_map(&self) -> Result<bool>

returns true if the node is a mapping
source§

fn is_int(&self) -> Result<bool>

returns true if the node is an integer
source§

fn is_real(&self) -> Result<bool>

returns true if the node is a floating-point number
source§

fn is_string(&self) -> Result<bool>

returns true if the node is a text string
source§

fn is_named(&self) -> Result<bool>

returns true if the node has a name
source§

fn name(&self) -> Result<String>

returns the node name or an empty string if the node is nameless
source§

fn size(&self) -> Result<size_t>

returns the number of elements in the node, if it is a sequence or mapping, or 1 otherwise.
source§

fn raw_size(&self) -> Result<size_t>

returns raw size of the FileNode in bytes
source§

fn to_i32(&self) -> Result<i32>

returns the node content as an integer. If the node stores floating-point number, it is rounded.
source§

fn to_f32(&self) -> Result<f32>

returns the node content as float
source§

fn to_f64(&self) -> Result<f64>

returns the node content as double
source§

fn to_string(&self) -> Result<String>

returns the node content as text string
source§

fn ptr(&self) -> Result<*const u8>

source§

fn begin(&self) -> Result<FileNodeIterator>

returns iterator pointing to the first node element
source§

fn end(&self) -> Result<FileNodeIterator>

returns iterator pointing to the element following the last node element
source§

fn read_raw(&self, fmt: &str, vec: &mut [u8]) -> Result<()>

Reads node elements to the buffer with the specified format. Read more
source§

fn real(&self) -> Result<f64>

Simplified reading API to use with bindings.
source§

fn string(&self) -> Result<String>

Simplified reading API to use with bindings.
source§

fn mat(&self) -> Result<Mat>

Simplified reading API to use with bindings.
source§

impl FileStorageTraitConst for BoxedRef<'_, FileStorage>

source§

fn as_raw_FileStorage(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn state(&self) -> i32

source§

fn elname(&self) -> String

source§

fn is_opened(&self) -> Result<bool>

Checks whether the file is opened. Read more
source§

fn get_first_top_level_node(&self) -> Result<FileNode>

Returns the first element of the top-level mapping. Read more
source§

fn root(&self, streamidx: i32) -> Result<FileNode>

Returns the top-level mapping Read more
source§

fn root_def(&self) -> Result<FileNode>

Returns the top-level mapping Read more
source§

fn get(&self, nodename: &str) -> Result<FileNode>

Returns the specified element of the top-level mapping. Read more
source§

fn get_node(&self, nodename: &str) -> Result<FileNode>

Returns the specified element of the top-level mapping. Read more
source§

fn get_format(&self) -> Result<i32>

Returns the current format. Read more
source§

impl FilterTraitConst for BoxedRef<'_, Filter>

source§

fn as_raw_Filter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FisherFaceRecognizerTraitConst for BoxedRef<'_, FisherFaceRecognizer>

source§

fn as_raw_FisherFaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FisheyeWarperTraitConst for BoxedRef<'_, FisheyeWarper>

source§

fn as_raw_FisheyeWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl FlannBasedMatcherTraitConst for BoxedRef<'_, FlannBasedMatcher>

source§

fn as_raw_FlannBasedMatcher( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>

source§

fn is_mask_supported(&self) -> Result<bool>

source§

fn clone(&self, empty_train_data: bool) -> Result<Ptr<DescriptorMatcher>>

C++ default parameters Read more
source§

fn clone_def(&self) -> Result<Ptr<DescriptorMatcher>>

source§

impl FlattenLayerTraitConst for BoxedRef<'_, FlattenLayer>

source§

fn as_raw_FlattenLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FloorLayerTraitConst for BoxedRef<'_, FloorLayer>

source§

fn as_raw_FloorLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FlowWarpLayerTraitConst for BoxedRef<'_, FlowWarpLayer>

source§

fn as_raw_FlowWarpLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FormattedTraitConst for BoxedRef<'_, Formatted>

source§

fn as_raw_Formatted(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FormatterTraitConst for BoxedRef<'_, Formatter>

source§

fn as_raw_Formatter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn format(&self, mtx: &impl MatTraitConst) -> Result<Ptr<Formatted>>

source§

impl FreeType2TraitConst for BoxedRef<'_, FreeType2>

source§

fn as_raw_FreeType2(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl<T: Boxed> From<T> for BoxedRef<'_, T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.
source§

impl FromFileMotionReaderTraitConst for BoxedRef<'_, FromFileMotionReader>

source§

fn as_raw_FromFileMotionReader( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl FunctionParamsTraitConst for BoxedRef<'_, FunctionParams>

source§

fn as_raw_FunctionParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn lambda(&self) -> i32

source§

fn sigma(&self) -> f32

source§

impl GArgTraitConst for BoxedRef<'_, GArg>

source§

fn as_raw_GArg(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn kind(&self) -> Detail_ArgKind

source§

fn opaque_kind(&self) -> Detail_OpaqueKind

source§

impl GArrayDescTraitConst for BoxedRef<'_, GArrayDesc>

source§

fn as_raw_GArrayDesc(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn equals(&self, unnamed: &impl GArrayDescTraitConst) -> Result<bool>

source§

impl GBackendTraitConst for BoxedRef<'_, GBackend>

source§

fn as_raw_GBackend(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn equals(&self, rhs: &impl GBackendTraitConst) -> Result<bool>

source§

impl GCallTraitConst for BoxedRef<'_, GCall>

source§

fn as_raw_GCall(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GCompileArgTraitConst for BoxedRef<'_, GCompileArg>

source§

fn as_raw_GCompileArg(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn tag(&self) -> String

source§

impl GCompiledTraitConst for BoxedRef<'_, GCompiled>

source§

fn as_raw_GCompiled(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn to_bool(&self) -> Result<bool>

Check if compiled object is valid (non-empty) Read more
source§

fn can_reshape(&self) -> Result<bool>

Check if the underlying backends support reshape or not. Read more
source§

impl GComputationTraitConst for BoxedRef<'_, GComputation>

source§

fn as_raw_GComputation(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GFTTDetectorTraitConst for BoxedRef<'_, GFTTDetector>

source§

fn as_raw_GFTTDetector(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_max_features(&self) -> Result<i32>

source§

fn get_quality_level(&self) -> Result<f64>

source§

fn get_min_distance(&self) -> Result<f64>

source§

fn get_block_size(&self) -> Result<i32>

source§

fn get_harris_detector(&self) -> Result<bool>

source§

fn get_k(&self) -> Result<f64>

source§

fn get_default_name(&self) -> Result<String>

source§

impl GFrameDescTraitConst for BoxedRef<'_, GFrameDesc>

source§

fn as_raw_GFrameDesc(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn fmt(&self) -> MediaFormat

source§

fn size(&self) -> Size

source§

fn equals(&self, unnamed: &impl GFrameDescTraitConst) -> Result<bool>

source§

impl GFrameTraitConst for BoxedRef<'_, GFrame>

source§

fn as_raw_GFrame(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GFunctorTraitConst for BoxedRef<'_, GFunctor>

source§

fn as_raw_GFunctor(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn impl_(&self) -> Result<GKernelImpl>

source§

fn backend(&self) -> Result<GBackend>

source§

fn id(&self) -> Result<String>

source§

impl GKernelImplTraitConst for BoxedRef<'_, GKernelImpl>

source§

fn as_raw_GKernelImpl(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn opaque(&self) -> any

source§

impl GKernelPackageTraitConst for BoxedRef<'_, GKernelPackage>

source§

fn as_raw_GKernelPackage( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_transformations(&self) -> Result<Vector<GTransform>>

Returns vector of transformations included in the package Read more
source§

fn get_kernel_ids(&self) -> Result<Vector<String>>

Returns vector of kernel ids included in the package Read more
source§

fn includes_api(&self, id: &str) -> Result<bool>

@private
source§

fn lookup(&self, id: &str) -> Result<Tuple<(GBackend, GKernelImpl)>>

@private
source§

fn backends(&self) -> Result<Vector<GBackend>>

Lists all backends which are included into package Read more
source§

impl GKernelTraitConst for BoxedRef<'_, GKernel>

source§

fn as_raw_GKernel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn name(&self) -> String

source§

fn tag(&self) -> String

source§

fn out_shapes(&self) -> GShapes

source§

fn in_kinds(&self) -> GKinds

source§

fn out_kinds(&self) -> GKinds

source§

impl GMatDescTraitConst for BoxedRef<'_, GMatDesc>

source§

fn as_raw_GMatDesc(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn depth(&self) -> i32

source§

fn chan(&self) -> i32

source§

fn size(&self) -> Size

source§

fn planar(&self) -> bool

source§

fn dims(&self) -> Vector<i32>

source§

fn equals(&self, rhs: &impl GMatDescTraitConst) -> Result<bool>

source§

fn not_equals(&self, rhs: &impl GMatDescTraitConst) -> Result<bool>

source§

fn is_nd(&self) -> Result<bool>

source§

fn can_describe(&self, mat: &impl MatTraitConst) -> Result<bool>

source§

fn can_describe_1(&self, mat: &impl RMatTraitConst) -> Result<bool>

source§

fn with_size_delta(&self, delta: Size) -> Result<GMatDesc>

source§

fn with_size_delta_1(&self, dx: i32, dy: i32) -> Result<GMatDesc>

source§

fn with_size(&self, sz: Size) -> Result<GMatDesc>

source§

fn with_depth(&self, ddepth: i32) -> Result<GMatDesc>

source§

fn with_type(&self, ddepth: i32, dchan: i32) -> Result<GMatDesc>

source§

fn as_planar(&self) -> Result<GMatDesc>

source§

fn as_planar_1(&self, planes: i32) -> Result<GMatDesc>

source§

fn as_interleaved(&self) -> Result<GMatDesc>

source§

impl GMatPTraitConst for BoxedRef<'_, GMatP>

source§

fn as_raw_GMatP(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GMatTraitConst for BoxedRef<'_, GMat>

source§

fn as_raw_GMat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GMatTraitConst for BoxedRef<'_, GMatP>

source§

fn as_raw_GMat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GOpaqueDescTraitConst for BoxedRef<'_, GOpaqueDesc>

source§

fn as_raw_GOpaqueDesc(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn equals(&self, unnamed: &impl GOpaqueDescTraitConst) -> Result<bool>

source§

impl GPCDetailsTraitConst for BoxedRef<'_, GPCDetails>

source§

fn as_raw_GPCDetails(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GPCPatchDescriptorTraitConst for BoxedRef<'_, GPCPatchDescriptor>

source§

fn as_raw_GPCPatchDescriptor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn feature(&self) -> VecN<f64, 18>

source§

fn dot(&self, coef: VecN<f64, 18>) -> Result<f64>

source§

fn is_separated(&self) -> Result<bool>

source§

impl GPCPatchSampleTraitConst for BoxedRef<'_, GPCPatchSample>

source§

fn as_raw_GPCPatchSample( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ref_(&self) -> GPCPatchDescriptor

source§

fn pos(&self) -> GPCPatchDescriptor

source§

fn neg(&self) -> GPCPatchDescriptor

source§

fn get_directions( &self, refdir: &mut bool, posdir: &mut bool, negdir: &mut bool, coef: VecN<f64, 18>, rhs: f64 ) -> Result<()>

source§

impl GPCTrainingSamplesTraitConst for BoxedRef<'_, GPCTrainingSamples>

source§

fn as_raw_GPCTrainingSamples( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn size(&self) -> Result<size_t>

source§

fn typ(&self) -> Result<i32>

source§

impl GPCTreeTraitConst for BoxedRef<'_, GPCTree>

source§

fn as_raw_GPCTree(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

fn find_leaf_for_patch( &self, descr: &impl GPCPatchDescriptorTraitConst ) -> Result<u32>

source§

fn equals(&self, t: &impl GPCTreeTraitConst) -> Result<bool>

source§

fn get_descriptor_type(&self) -> Result<i32>

source§

impl GRULayerTraitConst for BoxedRef<'_, GRULayer>

source§

fn as_raw_GRULayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GRunArgTraitConst for BoxedRef<'_, Data>

source§

fn as_raw_GRunArg(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GRunArgTraitConst for BoxedRef<'_, GRunArg>

source§

fn as_raw_GRunArg(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GScalarDescTraitConst for BoxedRef<'_, GScalarDesc>

source§

fn as_raw_GScalarDesc(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn equals(&self, unnamed: &impl GScalarDescTraitConst) -> Result<bool>

source§

fn not_equals(&self, rhs: &impl GScalarDescTraitConst) -> Result<bool>

source§

impl GScalarTraitConst for BoxedRef<'_, GScalar>

source§

fn as_raw_GScalar(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GStreamingCompiledTraitConst for BoxedRef<'_, GStreamingCompiled>

source§

fn as_raw_GStreamingCompiled( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn running(&self) -> Result<bool>

Test if the pipeline is running. Read more
source§

fn to_bool(&self) -> Result<bool>

Check if compiled object is valid (non-empty) Read more
source§

impl GTransformTraitConst for BoxedRef<'_, GTransform>

source§

fn as_raw_GTransform(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn description(&self) -> String

source§

impl GTypeInfoTraitConst for BoxedRef<'_, GTypeInfo>

source§

fn as_raw_GTypeInfo(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn shape(&self) -> GShape

source§

fn kind(&self) -> Detail_OpaqueKind

source§

impl GatherElementsLayerTraitConst for BoxedRef<'_, GatherElementsLayer>

source§

fn as_raw_GatherElementsLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GatherLayerTraitConst for BoxedRef<'_, GatherLayer>

source§

fn as_raw_GatherLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GaussianMotionFilterTraitConst for BoxedRef<'_, GaussianMotionFilter>

source§

fn as_raw_GaussianMotionFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn stdev(&self) -> Result<f32>

source§

impl GeluApproximationLayerTraitConst for BoxedRef<'_, GeluApproximationLayer>

source§

fn as_raw_GeluApproximationLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GeluLayerTraitConst for BoxedRef<'_, GeluLayer>

source§

fn as_raw_GeluLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GemmLayerTraitConst for BoxedRef<'_, GemmLayer>

source§

fn as_raw_GemmLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn trans_a(&self) -> bool

source§

fn trans_b(&self) -> bool

source§

fn alpha(&self) -> f32

source§

fn beta(&self) -> f32

source§

impl GeneralizedHoughBallardTraitConst for BoxedRef<'_, GeneralizedHoughBallard>

source§

fn as_raw_GeneralizedHoughBallard( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_levels(&self) -> Result<i32>

source§

fn get_votes_threshold(&self) -> Result<i32>

source§

impl GeneralizedHoughGuilTraitConst for BoxedRef<'_, GeneralizedHoughGuil>

source§

impl GeneralizedHoughTraitConst for BoxedRef<'_, GeneralizedHough>

source§

fn as_raw_GeneralizedHough( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_canny_low_thresh(&self) -> Result<i32>

source§

fn get_canny_high_thresh(&self) -> Result<i32>

source§

fn get_min_dist(&self) -> Result<f64>

source§

fn get_dp(&self) -> Result<f64>

source§

fn get_max_buffer_size(&self) -> Result<i32>

source§

impl GeneralizedHoughTraitConst for BoxedRef<'_, GeneralizedHoughBallard>

source§

fn as_raw_GeneralizedHough( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_canny_low_thresh(&self) -> Result<i32>

source§

fn get_canny_high_thresh(&self) -> Result<i32>

source§

fn get_min_dist(&self) -> Result<f64>

source§

fn get_dp(&self) -> Result<f64>

source§

fn get_max_buffer_size(&self) -> Result<i32>

source§

impl GeneralizedHoughTraitConst for BoxedRef<'_, GeneralizedHoughGuil>

source§

fn as_raw_GeneralizedHough( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_canny_low_thresh(&self) -> Result<i32>

source§

fn get_canny_high_thresh(&self) -> Result<i32>

source§

fn get_min_dist(&self) -> Result<f64>

source§

fn get_dp(&self) -> Result<f64>

source§

fn get_max_buffer_size(&self) -> Result<i32>

source§

impl GpuDataTraitConst for BoxedRef<'_, GpuData>

source§

fn as_raw_GpuData(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn data(&self) -> *const u8

source§

fn size(&self) -> size_t

source§

impl GpuMatNDTraitConst for BoxedRef<'_, GpuMatND>

source§

fn as_raw_GpuMatND(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

! includes several bit-fields: Read more
source§

fn dims(&self) -> i32

matrix dimensionality
source§

fn size(&self) -> GpuMatND_SizeArray

shape of this array
source§

fn step(&self) -> GpuMatND_StepArray

! step values Their semantics is identical to the semantics of step for Mat.
source§

fn try_clone(&self) -> Result<GpuMatND>

Creates a full copy of the array and the underlying data. The method creates a full copy of the array. It mimics the behavior of Mat::clone(), i.e. the original step is not taken into account. So, the array copy is a continuous array occupying total()*elemSize() bytes.
source§

fn clone(&self, stream: &mut impl StreamTrait) -> Result<GpuMatND>

Creates a full copy of the array and the underlying data. The method creates a full copy of the array. It mimics the behavior of Mat::clone(), i.e. the original step is not taken into account. So, the array copy is a continuous array occupying total()*elemSize() bytes. Read more
source§

fn ranges(&self, ranges: &Vector<Range>) -> Result<BoxedRef<'_, GpuMatND>>

Extracts a sub-matrix. The operator makes a new header for the specified sub-array of *this. The operator is an O(1) operation, that is, no matrix data is copied. Read more
source§

fn create_gpu_mat_header( &self, idx: GpuMatND_IndexArray, row_range: impl RangeTrait, col_range: impl RangeTrait ) -> Result<BoxedRef<'_, GpuMat>>

Creates a GpuMat header for a 2D plane part of an n-dim matrix. Read more
source§

fn create_gpu_mat_header_1(&self) -> Result<BoxedRef<'_, GpuMat>>

Creates a GpuMat header for a 2D plane part of an n-dim matrix. Read more
source§

fn rowscols( &self, idx: GpuMatND_IndexArray, row_range: impl RangeTrait, col_range: impl RangeTrait ) -> Result<BoxedRef<'_, GpuMat>>

Extracts a 2D plane part of an n-dim matrix. It differs from createGpuMatHeader(IndexArray, Range, Range) in that it clones a part of this GpuMatND to the returned GpuMat. Read more
source§

fn to_gpu_mat(&self) -> Result<GpuMat>

Extracts a 2D plane part of an n-dim matrix if this GpuMatND is effectively 2D. It differs from createGpuMatHeader() in that it clones a part of this GpuMatND. Read more
source§

fn download(&self, dst: &mut impl ToOutputArray) -> Result<()>

source§

fn download_1( &self, dst: &mut impl ToOutputArray, stream: &mut impl StreamTrait ) -> Result<()>

source§

fn is_continuous(&self) -> Result<bool>

returns true iff the GpuMatND data is continuous (i.e. when there are no gaps between successive rows)
source§

fn is_submatrix(&self) -> Result<bool>

returns true if the matrix is a sub-matrix of another matrix
source§

fn elem_size(&self) -> Result<size_t>

returns element size in bytes
source§

fn elem_size1(&self) -> Result<size_t>

returns the size of element channel in bytes
source§

fn empty(&self) -> Result<bool>

returns true if data is null
source§

fn external(&self) -> Result<bool>

returns true if not empty and points to external(user-allocated) gpu memory
source§

fn get_device_ptr(&self) -> Result<*mut u8>

returns pointer to the first byte of the GPU memory
source§

fn total(&self) -> Result<size_t>

returns the total number of array elements
source§

fn total_mem_size(&self) -> Result<size_t>

returns the size of underlying memory in bytes
source§

fn typ(&self) -> Result<i32>

returns element type
source§

impl GpuMatTraitConst for BoxedRef<'_, GpuMat>

source§

fn as_raw_GpuMat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

! includes several bit-fields: Read more
source§

fn rows(&self) -> i32

the number of rows and columns
source§

fn cols(&self) -> i32

the number of rows and columns
source§

fn step(&self) -> size_t

a distance between successive rows in bytes; includes the gap if any
source§

fn data(&self) -> *const u8

pointer to the data
source§

fn refcount(&self) -> *const i32

pointer to the reference counter; when GpuMat points to user-allocated data, the pointer is NULL
source§

fn datastart(&self) -> *const u8

helper fields used in locateROI and adjustROI
source§

fn dataend(&self) -> *const u8

source§

fn download(&self, dst: &mut impl ToOutputArray) -> Result<()>

Performs data download from GpuMat (Blocking call) Read more
source§

fn download_async( &self, dst: &mut impl ToOutputArray, stream: &mut impl StreamTrait ) -> Result<()>

Performs data download from GpuMat (Non-Blocking call) Read more
source§

fn try_clone(&self) -> Result<GpuMat>

returns deep copy of the GpuMat, i.e. the data is copied
source§

fn copy_to(&self, dst: &mut impl ToOutputArray) -> Result<()>

copies the GpuMat content to device memory (Blocking call)
source§

fn copy_to_gpu_mat(&self, dst: &mut impl GpuMatTrait) -> Result<()>

bindings overload which copies the GpuMat content to device memory (Blocking call)
source§

fn copy_to_stream( &self, dst: &mut impl ToOutputArray, stream: &mut impl StreamTrait ) -> Result<()>

copies the GpuMat content to device memory (Non-Blocking call)
source§

fn copy_to_gpu_mat_stream( &self, dst: &mut impl GpuMatTrait, stream: &mut impl StreamTrait ) -> Result<()>

bindings overload which copies the GpuMat content to device memory (Non-Blocking call)
source§

fn copy_to_mask( &self, dst: &mut impl ToOutputArray, mask: &impl ToInputArray ) -> Result<()>

copies those GpuMat elements to “m” that are marked with non-zero mask elements (Blocking call)
source§

fn copy_to_gpu_mat_mask( &self, dst: &mut impl GpuMatTrait, mask: &mut impl GpuMatTrait ) -> Result<()>

bindings overload which copies those GpuMat elements to “m” that are marked with non-zero mask elements (Blocking call)
source§

fn copy_to_mask_stream( &self, dst: &mut impl ToOutputArray, mask: &impl ToInputArray, stream: &mut impl StreamTrait ) -> Result<()>

copies those GpuMat elements to “m” that are marked with non-zero mask elements (Non-Blocking call)
source§

fn copy_to_gpu_mat_mask_stream( &self, dst: &mut impl GpuMatTrait, mask: &mut impl GpuMatTrait, stream: &mut impl StreamTrait ) -> Result<()>

bindings overload which copies those GpuMat elements to “m” that are marked with non-zero mask elements (Non-Blocking call)
source§

fn convert_to(&self, dst: &mut impl ToOutputArray, rtype: i32) -> Result<()>

converts GpuMat to another datatype (Blocking call)
source§

fn convert_to_1( &self, dst: &mut impl ToOutputArray, rtype: i32, stream: &mut impl StreamTrait ) -> Result<()>

converts GpuMat to another datatype (Non-Blocking call)
source§

fn convert_to_2( &self, dst: &mut impl GpuMatTrait, rtype: i32, stream: &mut impl StreamTrait ) -> Result<()>

bindings overload which converts GpuMat to another datatype (Non-Blocking call)
source§

fn convert_to_3( &self, dst: &mut impl ToOutputArray, rtype: i32, alpha: f64, beta: f64 ) -> Result<()>

converts GpuMat to another datatype with scaling (Blocking call) Read more
source§

fn convert_to_def( &self, dst: &mut impl ToOutputArray, rtype: i32, alpha: f64 ) -> Result<()>

converts GpuMat to another datatype with scaling (Blocking call) Read more
source§

fn convert_to_4( &self, dst: &mut impl GpuMatTrait, rtype: i32, alpha: f64, beta: f64 ) -> Result<()>

bindings overload which converts GpuMat to another datatype with scaling(Blocking call) Read more
source§

fn convert_to_def_1(&self, dst: &mut impl GpuMatTrait, rtype: i32) -> Result<()>

bindings overload which converts GpuMat to another datatype with scaling(Blocking call) Read more
source§

fn convert_to_5( &self, dst: &mut impl ToOutputArray, rtype: i32, alpha: f64, stream: &mut impl StreamTrait ) -> Result<()>

converts GpuMat to another datatype with scaling (Non-Blocking call)
source§

fn convert_to_6( &self, dst: &mut impl ToOutputArray, rtype: i32, alpha: f64, beta: f64, stream: &mut impl StreamTrait ) -> Result<()>

converts GpuMat to another datatype with scaling (Non-Blocking call)
source§

fn convert_to_7( &self, dst: &mut impl GpuMatTrait, rtype: i32, alpha: f64, beta: f64, stream: &mut impl StreamTrait ) -> Result<()>

bindings overload which converts GpuMat to another datatype with scaling (Non-Blocking call)
source§

fn assign_to(&self, m: &mut impl GpuMatTrait, typ: i32) -> Result<()>

C++ default parameters Read more
source§

fn assign_to_def(&self, m: &mut impl GpuMatTrait) -> Result<()>

source§

fn ptr(&self, y: i32) -> Result<*const u8>

C++ default parameters Read more
source§

fn ptr_def(&self) -> Result<*const u8>

source§

fn row(&self, y: i32) -> Result<BoxedRef<'_, GpuMat>>

returns a new GpuMat header for the specified row
source§

fn col(&self, x: i32) -> Result<BoxedRef<'_, GpuMat>>

returns a new GpuMat header for the specified column
source§

fn row_bounds(&self, startrow: i32, endrow: i32) -> Result<BoxedRef<'_, GpuMat>>

… for the specified row span
source§

fn row_range(&self, r: impl RangeTrait) -> Result<BoxedRef<'_, GpuMat>>

source§

fn col_bounds(&self, startcol: i32, endcol: i32) -> Result<BoxedRef<'_, GpuMat>>

… for the specified column span
source§

fn col_range(&self, r: impl RangeTrait) -> Result<BoxedRef<'_, GpuMat>>

source§

fn rowscols( &self, row_range: impl RangeTrait, col_range: impl RangeTrait ) -> Result<BoxedRef<'_, GpuMat>>

extracts a rectangular sub-GpuMat (this is a generalized form of row, rowRange etc.)
source§

fn roi(&self, roi: Rect) -> Result<BoxedRef<'_, GpuMat>>

source§

fn reshape(&self, cn: i32, rows: i32) -> Result<BoxedRef<'_, GpuMat>>

creates alternative GpuMat header for the same data, with different number of channels and/or different number of rows Read more
source§

fn reshape_def(&self, cn: i32) -> Result<BoxedRef<'_, GpuMat>>

creates alternative GpuMat header for the same data, with different number of channels and/or different number of rows Read more
source§

fn locate_roi(&self, whole_size: &mut Size, ofs: &mut Point) -> Result<()>

locates GpuMat header within a parent GpuMat
source§

fn is_continuous(&self) -> Result<bool>

returns true iff the GpuMat data is continuous (i.e. when there are no gaps between successive rows)
source§

fn elem_size(&self) -> Result<size_t>

returns element size in bytes
source§

fn elem_size1(&self) -> Result<size_t>

returns the size of element channel in bytes
source§

fn typ(&self) -> Result<i32>

returns element type
source§

fn depth(&self) -> Result<i32>

returns element type
source§

fn channels(&self) -> Result<i32>

returns number of channels
source§

fn step1(&self) -> Result<size_t>

returns step/elemSize1()
source§

fn size(&self) -> Result<Size>

returns GpuMat size : width == number of columns, height == number of rows
source§

fn empty(&self) -> Result<bool>

returns true if GpuMat data is NULL
source§

fn cuda_ptr(&self) -> Result<*mut c_void>

source§

impl GpuMat_AllocatorTraitConst for BoxedRef<'_, GpuMat_Allocator>

source§

fn as_raw_GpuMat_Allocator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GraphSegmentationTraitConst for BoxedRef<'_, GraphSegmentation>

source§

fn as_raw_GraphSegmentation( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl GraphicalCodeDetectorTraitConst for BoxedRef<'_, BarcodeDetector>

source§

fn as_raw_GraphicalCodeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical code in image and returns the quadrangle containing the code. Read more
source§

fn decode( &self, img: &impl ToInputArray, points: &impl ToInputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn decode_def( &self, img: &impl ToInputArray, points: &impl ToInputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_and_decode_def(&self, img: &impl ToInputArray) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_multi( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical codes in image and returns the vector of the quadrangles containing the codes. Read more
source§

fn decode_multi( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String>, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn decode_multi_def( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode_multi( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

fn detect_and_decode_multi_def( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

impl GraphicalCodeDetectorTraitConst for BoxedRef<'_, GraphicalCodeDetector>

source§

fn as_raw_GraphicalCodeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical code in image and returns the quadrangle containing the code. Read more
source§

fn decode( &self, img: &impl ToInputArray, points: &impl ToInputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn decode_def( &self, img: &impl ToInputArray, points: &impl ToInputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_and_decode_def(&self, img: &impl ToInputArray) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_multi( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical codes in image and returns the vector of the quadrangles containing the codes. Read more
source§

fn decode_multi( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String>, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn decode_multi_def( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode_multi( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

fn detect_and_decode_multi_def( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

impl GraphicalCodeDetectorTraitConst for BoxedRef<'_, QRCodeDetector>

source§

fn as_raw_GraphicalCodeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical code in image and returns the quadrangle containing the code. Read more
source§

fn decode( &self, img: &impl ToInputArray, points: &impl ToInputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn decode_def( &self, img: &impl ToInputArray, points: &impl ToInputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_and_decode_def(&self, img: &impl ToInputArray) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_multi( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical codes in image and returns the vector of the quadrangles containing the codes. Read more
source§

fn decode_multi( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String>, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn decode_multi_def( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode_multi( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

fn detect_and_decode_multi_def( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

impl GraphicalCodeDetectorTraitConst for BoxedRef<'_, QRCodeDetectorAruco>

source§

fn as_raw_GraphicalCodeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical code in image and returns the quadrangle containing the code. Read more
source§

fn decode( &self, img: &impl ToInputArray, points: &impl ToInputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn decode_def( &self, img: &impl ToInputArray, points: &impl ToInputArray ) -> Result<Vec<u8>>

Decodes graphical code in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_and_decode_def(&self, img: &impl ToInputArray) -> Result<Vec<u8>>

Both detects and decodes graphical code Read more
source§

fn detect_multi( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>

Detects graphical codes in image and returns the vector of the quadrangles containing the codes. Read more
source§

fn decode_multi( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String>, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn decode_multi_def( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Decodes graphical codes in image once it’s found by the detect() method. Read more
source§

fn detect_and_decode_multi( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

fn detect_and_decode_multi_def( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String> ) -> Result<bool>

Both detects and decodes graphical codes Read more
source§

impl GrayCodePatternTraitConst for BoxedRef<'_, GrayCodePattern>

source§

fn as_raw_GrayCodePattern( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_number_of_pattern_images(&self) -> Result<size_t>

Get the number of pattern images needed for the graycode pattern. Read more
source§

fn get_images_for_shadow_masks( &self, black_image: &mut impl ToInputOutputArray, white_image: &mut impl ToInputOutputArray ) -> Result<()>

Generates the all-black and all-white images needed for shadowMasks computation. Read more
source§

fn get_proj_pixel( &self, pattern_images: &impl ToInputArray, x: i32, y: i32, proj_pix: &mut Point ) -> Result<bool>

For a (x,y) pixel of a camera returns the corresponding projector pixel. Read more
source§

impl GrayCodePattern_ParamsTraitConst for BoxedRef<'_, GrayCodePattern_Params>

source§

fn as_raw_GrayCodePattern_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn width(&self) -> i32

source§

fn height(&self) -> i32

source§

impl GrayworldWBTraitConst for BoxedRef<'_, GrayworldWB>

source§

fn as_raw_GrayworldWB(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_saturation_threshold(&self) -> Result<f32>

Maximum saturation for a pixel to be included in the gray-world assumption Read more
source§

impl GridBoardTraitConst for BoxedRef<'_, GridBoard>

source§

fn as_raw_GridBoard(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_grid_size(&self) -> Result<Size>

source§

fn get_marker_length(&self) -> Result<f32>

source§

fn get_marker_separation(&self) -> Result<f32>

source§

impl GuidedFilterTraitConst for BoxedRef<'_, GuidedFilter>

source§

fn as_raw_GuidedFilter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl HDF5TraitConst for BoxedRef<'_, HDF5>

source§

fn as_raw_HDF5(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn hlexists(&self, label: &str) -> Result<bool>

Check if label exists or not. Read more
source§

fn atexists(&self, atlabel: &str) -> Result<bool>

Check whether a given attribute exits or not in the root group. Read more
source§

fn dscreate(&self, rows: i32, cols: i32, typ: i32, dslabel: &str) -> Result<()>

Create and allocate storage for two dimensional single or multi channel dataset. Read more
source§

fn dscreate_compress( &self, rows: i32, cols: i32, typ: i32, dslabel: &str, compresslevel: i32 ) -> Result<()>

Create and allocate storage for two dimensional single or multi channel dataset. Read more
source§

fn dscreate_compress_dims( &self, rows: i32, cols: i32, typ: i32, dslabel: &str, compresslevel: i32, dims_chunks: &Vector<i32> ) -> Result<()>

Create and allocate storage for two dimensional single or multi channel dataset. Read more
source§

fn dscreate_nd(&self, sizes: &[i32], typ: i32, dslabel: &str) -> Result<()>

source§

fn dscreate_nd_compress( &self, sizes: &[i32], typ: i32, dslabel: &str, compresslevel: i32 ) -> Result<()>

source§

fn dscreate_nd_vec_compress_dims( &self, sizes: &Vector<i32>, typ: i32, dslabel: &str, compresslevel: i32, dims_chunks: &Vector<i32> ) -> Result<()>

C++ default parameters Read more
source§

fn dscreate_nd_vec_compress_dims_def( &self, sizes: &Vector<i32>, typ: i32, dslabel: &str ) -> Result<()>

source§

fn dscreate_nd_compress_dims( &self, sizes: &[i32], typ: i32, dslabel: &str, compresslevel: i32, dims_chunks: &i32 ) -> Result<()>

Create and allocate storage for n-dimensional dataset, single or multichannel type. Read more
source§

fn dsgetsize(&self, dslabel: &str, dims_flag: i32) -> Result<Vector<i32>>

Fetch dataset sizes Read more
source§

fn dsgetsize_def(&self, dslabel: &str) -> Result<Vector<i32>>

Fetch dataset sizes Read more
source§

fn dsgettype(&self, dslabel: &str) -> Result<i32>

Fetch dataset type Read more
source§

fn dswrite(&self, array: &impl ToInputArray, dslabel: &str) -> Result<()>

source§

fn dswrite_offset( &self, array: &impl ToInputArray, dslabel: &str, dims_offset: &Vector<i32>, dims_counts: &Vector<i32> ) -> Result<()>

C++ default parameters Read more
source§

fn dswrite_offset_def( &self, array: &impl ToInputArray, dslabel: &str, dims_offset: &Vector<i32> ) -> Result<()>

source§

fn dsinsert(&self, array: &impl ToInputArray, dslabel: &str) -> Result<()>

source§

fn dsinsert_offset( &self, array: &impl ToInputArray, dslabel: &str, dims_offset: &Vector<i32>, dims_counts: &Vector<i32> ) -> Result<()>

C++ default parameters Read more
source§

fn dsinsert_offset_def( &self, array: &impl ToInputArray, dslabel: &str, dims_offset: &Vector<i32> ) -> Result<()>

source§

fn dsread(&self, array: &mut impl ToOutputArray, dslabel: &str) -> Result<()>

source§

fn dsread_offset( &self, array: &mut impl ToOutputArray, dslabel: &str, dims_offset: &Vector<i32>, dims_counts: &Vector<i32> ) -> Result<()>

C++ default parameters Read more
source§

fn dsread_offset_def( &self, array: &mut impl ToOutputArray, dslabel: &str, dims_offset: &Vector<i32> ) -> Result<()>

source§

fn kpgetsize(&self, kplabel: &str, dims_flag: i32) -> Result<i32>

Fetch keypoint dataset size Read more
source§

fn kpgetsize_def(&self, kplabel: &str) -> Result<i32>

Fetch keypoint dataset size Read more
source§

fn kpcreate( &self, size: i32, kplabel: &str, compresslevel: i32, chunks: i32 ) -> Result<()>

Create and allocate special storage for cv::KeyPoint dataset. Read more
source§

fn kpcreate_def(&self, size: i32, kplabel: &str) -> Result<()>

Create and allocate special storage for cv::KeyPoint dataset. Read more
source§

fn kpwrite( &self, keypoints: Vector<KeyPoint>, kplabel: &str, offset: i32, counts: i32 ) -> Result<()>

Write or overwrite list of KeyPoint into specified dataset of hdf5 file. Read more
source§

fn kpwrite_def(&self, keypoints: Vector<KeyPoint>, kplabel: &str) -> Result<()>

Write or overwrite list of KeyPoint into specified dataset of hdf5 file. Read more
source§

fn kpinsert( &self, keypoints: Vector<KeyPoint>, kplabel: &str, offset: i32, counts: i32 ) -> Result<()>

Insert or overwrite list of KeyPoint into specified dataset and autoexpand dataset size if unlimited property allows. Read more
source§

fn kpinsert_def(&self, keypoints: Vector<KeyPoint>, kplabel: &str) -> Result<()>

Insert or overwrite list of KeyPoint into specified dataset and autoexpand dataset size if unlimited property allows. Read more
source§

fn kpread( &self, keypoints: &mut Vector<KeyPoint>, kplabel: &str, offset: i32, counts: i32 ) -> Result<()>

Read specific keypoint dataset from hdf5 file into vector object. Read more
source§

fn kpread_def( &self, keypoints: &mut Vector<KeyPoint>, kplabel: &str ) -> Result<()>

Read specific keypoint dataset from hdf5 file into vector object. Read more
source§

impl HOGDescriptorTraitConst for BoxedRef<'_, HOGDescriptor>

source§

fn as_raw_HOGDescriptor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn win_size(&self) -> Size

Detection window size. Align to block size and block stride. Default value is Size(64,128).
source§

fn block_size(&self) -> Size

Block size in pixels. Align to cell size. Default value is Size(16,16).
source§

fn block_stride(&self) -> Size

Block stride. It must be a multiple of cell size. Default value is Size(8,8).
source§

fn cell_size(&self) -> Size

Cell size. Default value is Size(8,8).
source§

fn nbins(&self) -> i32

Number of bins used in the calculation of histogram of gradients. Default value is 9.
source§

fn deriv_aperture(&self) -> i32

not documented
source§

fn win_sigma(&self) -> f64

Gaussian smoothing window parameter.
source§

fn histogram_norm_type(&self) -> HOGDescriptor_HistogramNormType

histogramNormType
source§

fn l2_hys_threshold(&self) -> f64

L2-Hys normalization method shrinkage.
source§

fn gamma_correction(&self) -> bool

Flag to specify whether the gamma correction preprocessing is required or not.
source§

fn svm_detector(&self) -> Vector<f32>

coefficients for the linear SVM classifier.
source§

fn ocl_svm_detector(&self) -> UMat

coefficients for the linear SVM classifier used when OpenCL is enabled
source§

fn free_coef(&self) -> f32

not documented
source§

fn nlevels(&self) -> i32

Maximum number of detection window increases. Default value is 64
source§

fn signed_gradient(&self) -> bool

Indicates signed gradient will be used or not
source§

fn get_descriptor_size(&self) -> Result<size_t>

Returns the number of coefficients required for the classification.
source§

fn check_detector_size(&self) -> Result<bool>

Checks if detector size equal to descriptor size.
source§

fn get_win_sigma(&self) -> Result<f64>

Returns winSigma value
source§

fn write(&self, fs: &mut impl FileStorageTrait, objname: &str) -> Result<()>

Stores HOGDescriptor parameters and coefficients for the linear SVM classifier in a file storage. Read more
source§

fn save(&self, filename: &str, objname: &str) -> Result<()>

saves HOGDescriptor parameters and coefficients for the linear SVM classifier to a file Read more
source§

fn save_def(&self, filename: &str) -> Result<()>

saves HOGDescriptor parameters and coefficients for the linear SVM classifier to a file Read more
source§

fn copy_to(&self, c: &mut impl HOGDescriptorTrait) -> Result<()>

clones the HOGDescriptor Read more
source§

fn compute( &self, img: &impl ToInputArray, descriptors: &mut Vector<f32>, win_stride: Size, padding: Size, locations: &Vector<Point> ) -> Result<()>

@example samples/cpp/train_HOG.cpp / Computes HOG descriptors of given image. Read more
source§

fn compute_def( &self, img: &impl ToInputArray, descriptors: &mut Vector<f32> ) -> Result<()>

@example samples/cpp/train_HOG.cpp / Computes HOG descriptors of given image. Read more
source§

fn detect_weights( &self, img: &impl ToInputArray, found_locations: &mut Vector<Point>, weights: &mut Vector<f64>, hit_threshold: f64, win_stride: Size, padding: Size, search_locations: &Vector<Point> ) -> Result<()>

Performs object detection without a multi-scale window. Read more
source§

fn detect_weights_def( &self, img: &impl ToInputArray, found_locations: &mut Vector<Point>, weights: &mut Vector<f64> ) -> Result<()>

Performs object detection without a multi-scale window. Read more
source§

fn detect( &self, img: &impl ToInputArray, found_locations: &mut Vector<Point>, hit_threshold: f64, win_stride: Size, padding: Size, search_locations: &Vector<Point> ) -> Result<()>

Performs object detection without a multi-scale window. Read more
source§

fn detect_def( &self, img: &impl ToInputArray, found_locations: &mut Vector<Point> ) -> Result<()>

Performs object detection without a multi-scale window. Read more
source§

fn detect_multi_scale_weights( &self, img: &impl ToInputArray, found_locations: &mut Vector<Rect>, found_weights: &mut Vector<f64>, hit_threshold: f64, win_stride: Size, padding: Size, scale: f64, group_threshold: f64, use_meanshift_grouping: bool ) -> Result<()>

Detects objects of different sizes in the input image. The detected objects are returned as a list of rectangles. Read more
source§

fn detect_multi_scale_weights_def( &self, img: &impl ToInputArray, found_locations: &mut Vector<Rect>, found_weights: &mut Vector<f64> ) -> Result<()>

Detects objects of different sizes in the input image. The detected objects are returned as a list of rectangles. Read more
source§

fn detect_multi_scale( &self, img: &impl ToInputArray, found_locations: &mut Vector<Rect>, hit_threshold: f64, win_stride: Size, padding: Size, scale: f64, group_threshold: f64, use_meanshift_grouping: bool ) -> Result<()>

Detects objects of different sizes in the input image. The detected objects are returned as a list of rectangles. Read more
source§

fn detect_multi_scale_def( &self, img: &impl ToInputArray, found_locations: &mut Vector<Rect> ) -> Result<()>

Detects objects of different sizes in the input image. The detected objects are returned as a list of rectangles. Read more
source§

fn compute_gradient( &self, img: &impl ToInputArray, grad: &mut impl ToInputOutputArray, angle_ofs: &mut impl ToInputOutputArray, padding_tl: Size, padding_br: Size ) -> Result<()>

Computes gradients and quantized gradient orientations. Read more
source§

fn compute_gradient_def( &self, img: &impl ToInputArray, grad: &mut impl ToInputOutputArray, angle_ofs: &mut impl ToInputOutputArray ) -> Result<()>

Computes gradients and quantized gradient orientations. Read more
source§

fn detect_roi( &self, img: &impl ToInputArray, locations: &Vector<Point>, found_locations: &mut Vector<Point>, confidences: &mut Vector<f64>, hit_threshold: f64, win_stride: Size, padding: Size ) -> Result<()>

evaluate specified ROI and return confidence value for each location Read more
source§

fn detect_roi_def( &self, img: &impl ToInputArray, locations: &Vector<Point>, found_locations: &mut Vector<Point>, confidences: &mut Vector<f64> ) -> Result<()>

evaluate specified ROI and return confidence value for each location Read more
source§

fn detect_multi_scale_roi( &self, img: &impl ToInputArray, found_locations: &mut Vector<Rect>, locations: &mut Vector<DetectionROI>, hit_threshold: f64, group_threshold: i32 ) -> Result<()>

evaluate specified ROI and return confidence value for each location in multiple scales Read more
source§

fn detect_multi_scale_roi_def( &self, img: &impl ToInputArray, found_locations: &mut Vector<Rect>, locations: &mut Vector<DetectionROI> ) -> Result<()>

evaluate specified ROI and return confidence value for each location in multiple scales Read more
source§

fn group_rectangles( &self, rect_list: &mut Vector<Rect>, weights: &mut Vector<f64>, group_threshold: i32, eps: f64 ) -> Result<()>

Groups the object candidate rectangles. Read more
source§

impl HammingTraitConst for BoxedRef<'_, Hamming>

source§

fn as_raw_Hamming(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn apply(&self, a: &[u8], b: &[u8]) -> Result<Hamming_ResultType>

this will count the bits in a ^ b
source§

impl HardSigmoidLayerTraitConst for BoxedRef<'_, HardSigmoidLayer>

source§

fn as_raw_HardSigmoidLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn alpha(&self) -> f32

source§

fn beta(&self) -> f32

source§

impl HardSwishLayerTraitConst for BoxedRef<'_, HardSwishLayer>

source§

fn as_raw_HardSwishLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl HarrisLaplaceFeatureDetectorTraitConst for BoxedRef<'_, HarrisLaplaceFeatureDetector>

source§

fn as_raw_HarrisLaplaceFeatureDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_octaves(&self) -> Result<i32>

source§

fn get_corn_thresh(&self) -> Result<f32>

source§

fn get_dog_thresh(&self) -> Result<f32>

source§

fn get_max_corners(&self) -> Result<i32>

source§

fn get_num_layers(&self) -> Result<i32>

source§

fn get_default_name(&self) -> Result<String>

source§

impl HausdorffDistanceExtractorTraitConst for BoxedRef<'_, HausdorffDistanceExtractor>

source§

fn as_raw_HausdorffDistanceExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_distance_flag(&self) -> Result<i32>

source§

fn get_rank_proportion(&self) -> Result<f32>

source§

impl HfsSegmentTraitConst for BoxedRef<'_, HfsSegment>

source§

fn as_raw_HfsSegment(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl HierarchicalClusteringIndexParamsTraitConst for BoxedRef<'_, HierarchicalClusteringIndexParams>

source§

fn as_raw_HierarchicalClusteringIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl HistogramCostExtractorTraitConst for BoxedRef<'_, ChiHistogramCostExtractor>

source§

fn as_raw_HistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_n_dummies(&self) -> Result<i32>

source§

fn get_default_cost(&self) -> Result<f32>

source§

impl HistogramCostExtractorTraitConst for BoxedRef<'_, EMDHistogramCostExtractor>

source§

fn as_raw_HistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_n_dummies(&self) -> Result<i32>

source§

fn get_default_cost(&self) -> Result<f32>

source§

impl HistogramCostExtractorTraitConst for BoxedRef<'_, EMDL1HistogramCostExtractor>

source§

fn as_raw_HistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_n_dummies(&self) -> Result<i32>

source§

fn get_default_cost(&self) -> Result<f32>

source§

impl HistogramCostExtractorTraitConst for BoxedRef<'_, HistogramCostExtractor>

source§

fn as_raw_HistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_n_dummies(&self) -> Result<i32>

source§

fn get_default_cost(&self) -> Result<f32>

source§

impl HistogramCostExtractorTraitConst for BoxedRef<'_, NormHistogramCostExtractor>

source§

fn as_raw_HistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_n_dummies(&self) -> Result<i32>

source§

fn get_default_cost(&self) -> Result<f32>

source§

impl HistogramPhaseUnwrappingTraitConst for BoxedRef<'_, HistogramPhaseUnwrapping>

source§

fn as_raw_HistogramPhaseUnwrapping( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl HostMemTraitConst for BoxedRef<'_, HostMem>

source§

fn as_raw_HostMem(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

source§

fn rows(&self) -> i32

source§

fn cols(&self) -> i32

source§

fn step(&self) -> size_t

source§

fn data(&self) -> *const u8

source§

fn refcount(&self) -> *const i32

source§

fn datastart(&self) -> *const u8

source§

fn dataend(&self) -> *const u8

source§

fn alloc_type(&self) -> HostMem_AllocType

source§

fn try_clone(&self) -> Result<HostMem>

returns deep copy of the matrix, i.e. the data is copied
source§

fn reshape(&self, cn: i32, rows: i32) -> Result<HostMem>

creates alternative HostMem header for the same data, with different number of channels and/or different number of rows Read more
source§

fn reshape_def(&self, cn: i32) -> Result<HostMem>

creates alternative HostMem header for the same data, with different number of channels and/or different number of rows Read more
source§

fn create_mat_header(&self) -> Result<Mat>

returns matrix header with disabled reference counting for HostMem data.
source§

fn create_gpu_mat_header(&self) -> Result<GpuMat>

Maps CPU memory to GPU address space and creates the cuda::GpuMat header without reference counting for it. Read more
source§

fn is_continuous(&self) -> Result<bool>

source§

fn elem_size(&self) -> Result<size_t>

source§

fn elem_size1(&self) -> Result<size_t>

source§

fn typ(&self) -> Result<i32>

source§

fn depth(&self) -> Result<i32>

source§

fn channels(&self) -> Result<i32>

source§

fn step1(&self) -> Result<size_t>

source§

fn size(&self) -> Result<Size>

source§

fn empty(&self) -> Result<bool>

source§

impl ICPOdometryTraitConst for BoxedRef<'_, ICPOdometry>

source§

impl ICPTraitConst for BoxedRef<'_, ICP>

source§

fn as_raw_ICP(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IDenseOptFlowEstimatorTraitConst for BoxedRef<'_, DensePyrLkOptFlowEstimatorGpu>

source§

fn as_raw_IDenseOptFlowEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IDenseOptFlowEstimatorTraitConst for BoxedRef<'_, IDenseOptFlowEstimator>

source§

fn as_raw_IDenseOptFlowEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IFrameSourceTraitConst for BoxedRef<'_, IFrameSource>

source§

fn as_raw_IFrameSource(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IFrameSourceTraitConst for BoxedRef<'_, MaskFrameSource>

source§

fn as_raw_IFrameSource(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IFrameSourceTraitConst for BoxedRef<'_, NullFrameSource>

source§

fn as_raw_IFrameSource(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IFrameSourceTraitConst for BoxedRef<'_, OnePassStabilizer>

source§

fn as_raw_IFrameSource(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IFrameSourceTraitConst for BoxedRef<'_, TwoPassStabilizer>

source§

fn as_raw_IFrameSource(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IFrameSourceTraitConst for BoxedRef<'_, VideoFileSource>

source§

fn as_raw_IFrameSource(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ILogTraitConst for BoxedRef<'_, ILog>

source§

fn as_raw_ILog(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ILogTraitConst for BoxedRef<'_, LogToStdout>

source§

fn as_raw_ILog(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ILogTraitConst for BoxedRef<'_, NullLog>

source§

fn as_raw_ILog(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IMotionStabilizerTraitConst for BoxedRef<'_, GaussianMotionFilter>

source§

fn as_raw_IMotionStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IMotionStabilizerTraitConst for BoxedRef<'_, IMotionStabilizer>

source§

fn as_raw_IMotionStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IMotionStabilizerTraitConst for BoxedRef<'_, LpMotionStabilizer>

source§

fn as_raw_IMotionStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IMotionStabilizerTraitConst for BoxedRef<'_, MotionFilterBase>

source§

fn as_raw_IMotionStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IMotionStabilizerTraitConst for BoxedRef<'_, MotionStabilizationPipeline>

source§

fn as_raw_IMotionStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IOutlierRejectorTraitConst for BoxedRef<'_, IOutlierRejector>

source§

fn as_raw_IOutlierRejector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IOutlierRejectorTraitConst for BoxedRef<'_, NullOutlierRejector>

source§

fn as_raw_IOutlierRejector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl IOutlierRejectorTraitConst for BoxedRef<'_, TranslationBasedLocalOutlierRejector>

source§

fn as_raw_IOutlierRejector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ISparseOptFlowEstimatorTraitConst for BoxedRef<'_, ISparseOptFlowEstimator>

source§

fn as_raw_ISparseOptFlowEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ISparseOptFlowEstimatorTraitConst for BoxedRef<'_, SparsePyrLkOptFlowEstimator>

source§

fn as_raw_ISparseOptFlowEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ISparseOptFlowEstimatorTraitConst for BoxedRef<'_, SparsePyrLkOptFlowEstimatorGpu>

source§

fn as_raw_ISparseOptFlowEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Image2DTraitConst for BoxedRef<'_, Image2D>

source§

fn as_raw_Image2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ptr(&self) -> Result<*mut c_void>

source§

impl ImageCollectionTraitConst for BoxedRef<'_, ImageCollection>

source§

fn as_raw_ImageCollection( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn size(&self) -> Result<size_t>

source§

impl ImageCollection_iteratorTraitConst for BoxedRef<'_, ImageCollection_iterator>

source§

fn as_raw_ImageCollection_iterator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ImageMotionEstimatorBaseTraitConst for BoxedRef<'_, FromFileMotionReader>

source§

fn as_raw_ImageMotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

impl ImageMotionEstimatorBaseTraitConst for BoxedRef<'_, ImageMotionEstimatorBase>

source§

fn as_raw_ImageMotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

impl ImageMotionEstimatorBaseTraitConst for BoxedRef<'_, KeypointBasedMotionEstimator>

source§

fn as_raw_ImageMotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

impl ImageMotionEstimatorBaseTraitConst for BoxedRef<'_, KeypointBasedMotionEstimatorGpu>

source§

fn as_raw_ImageMotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

impl ImageMotionEstimatorBaseTraitConst for BoxedRef<'_, ToFileMotionWriter>

source§

fn as_raw_ImageMotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

impl ImageTraitConst for BoxedRef<'_, Image>

source§

fn as_raw_Image(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn org(&self) -> Point

The bottom-left corner of the image
source§

fn img(&self) -> Mat

Image to draw
source§

fn alpha(&self) -> Mat

Alpha channel for image to draw (same size and number of channels)
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, AverageHash>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, BlockMeanHash>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, ColorMomentHash>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, ImgHashBase>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, MarrHildrethHash>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, PHash>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl ImgHashBaseTraitConst for BoxedRef<'_, RadialVarianceHash>

source§

fn as_raw_ImgHashBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>

Compare the hash value between inOne and inTwo Read more
source§

impl IndexParamsTraitConst for BoxedRef<'_, AutotunedIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, CompositeIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, HierarchicalClusteringIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, IndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, KDTreeIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, KMeansIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, LinearIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, LshIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, SavedIndexParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexParamsTraitConst for BoxedRef<'_, SearchParams>

source§

fn as_raw_IndexParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_string(&self, key: &str, default_val: &str) -> Result<String>

C++ default parameters Read more
source§

fn get_string_def(&self, key: &str) -> Result<String>

source§

fn get_int(&self, key: &str, default_val: i32) -> Result<i32>

C++ default parameters Read more
source§

fn get_int_def(&self, key: &str) -> Result<i32>

source§

fn get_double(&self, key: &str, default_val: f64) -> Result<f64>

C++ default parameters Read more
source§

fn get_double_def(&self, key: &str) -> Result<f64>

source§

fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>

source§

impl IndexTraitConst for BoxedRef<'_, Index>

source§

fn as_raw_Index(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn save(&self, filename: &str) -> Result<()>

source§

fn get_distance(&self) -> Result<flann_distance_t>

source§

fn get_algorithm(&self) -> Result<flann_algorithm_t>

source§

impl InnerProductLayerInt8TraitConst for BoxedRef<'_, InnerProductLayerInt8>

source§

fn as_raw_InnerProductLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn input_zp(&self) -> i32

source§

fn output_zp(&self) -> i32

source§

fn input_sc(&self) -> f32

source§

fn output_sc(&self) -> f32

source§

fn per_channel(&self) -> bool

source§

impl InnerProductLayerTraitConst for BoxedRef<'_, InnerProductLayer>

source§

fn as_raw_InnerProductLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn axis(&self) -> i32

source§

impl InnerProductLayerTraitConst for BoxedRef<'_, InnerProductLayerInt8>

source§

fn as_raw_InnerProductLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn axis(&self) -> i32

source§

impl InpainterBaseTraitConst for BoxedRef<'_, ColorAverageInpainter>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpainterBaseTraitConst for BoxedRef<'_, ColorInpainter>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpainterBaseTraitConst for BoxedRef<'_, ConsistentMosaicInpainter>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpainterBaseTraitConst for BoxedRef<'_, InpainterBase>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpainterBaseTraitConst for BoxedRef<'_, InpaintingPipeline>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpainterBaseTraitConst for BoxedRef<'_, MotionInpainter>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpainterBaseTraitConst for BoxedRef<'_, NullInpainter>

source§

fn as_raw_InpainterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn radius(&self) -> Result<i32>

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frames(&self) -> Result<Vector<Mat>>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn stabilized_frames(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl InpaintingPipelineTraitConst for BoxedRef<'_, InpaintingPipeline>

source§

fn as_raw_InpaintingPipeline( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

source§

impl InstanceNormLayerTraitConst for BoxedRef<'_, InstanceNormLayer>

source§

fn as_raw_InstanceNormLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn epsilon(&self) -> f32

source§

impl IntelligentScissorsMBTraitConst for BoxedRef<'_, IntelligentScissorsMB>

source§

fn as_raw_IntelligentScissorsMB( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_contour( &self, target_pt: Point, contour: &mut impl ToOutputArray, backward: bool ) -> Result<()>

Extracts optimal contour for the given target point on the image Read more
source§

fn get_contour_def( &self, target_pt: Point, contour: &mut impl ToOutputArray ) -> Result<()>

Extracts optimal contour for the given target point on the image Read more
source§

impl InterpLayerTraitConst for BoxedRef<'_, InterpLayer>

source§

fn as_raw_InterpLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl KAZETraitConst for BoxedRef<'_, KAZE>

source§

fn as_raw_KAZE(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_extended(&self) -> Result<bool>

source§

fn get_upright(&self) -> Result<bool>

source§

fn get_threshold(&self) -> Result<f64>

source§

fn get_n_octaves(&self) -> Result<i32>

source§

fn get_n_octave_layers(&self) -> Result<i32>

source§

fn get_diffusivity(&self) -> Result<KAZE_DiffusivityType>

source§

fn get_default_name(&self) -> Result<String>

source§

impl KDTreeIndexParamsTraitConst for BoxedRef<'_, KDTreeIndexParams>

source§

fn as_raw_KDTreeIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl KMeansIndexParamsTraitConst for BoxedRef<'_, KMeansIndexParams>

source§

fn as_raw_KMeansIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl KNearestTraitConst for BoxedRef<'_, KNearest>

source§

fn as_raw_KNearest(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_default_k(&self) -> Result<i32>

Default number of neighbors to use in predict method. Read more
source§

fn get_is_classifier(&self) -> Result<bool>

Whether classification or regression model should be trained. Read more
source§

fn get_emax(&self) -> Result<i32>

Parameter for KDTree implementation. Read more
source§

fn get_algorithm_type(&self) -> Result<i32>

%Algorithm type, one of KNearest::Types. Read more
source§

fn find_nearest( &self, samples: &impl ToInputArray, k: i32, results: &mut impl ToOutputArray, neighbor_responses: &mut impl ToOutputArray, dist: &mut impl ToOutputArray ) -> Result<f32>

Finds the neighbors and predicts responses for input vectors. Read more
source§

fn find_nearest_def( &self, samples: &impl ToInputArray, k: i32, results: &mut impl ToOutputArray ) -> Result<f32>

Finds the neighbors and predicts responses for input vectors. Read more
source§

impl KalmanFilterTraitConst for BoxedRef<'_, KalmanFilter>

source§

fn as_raw_KalmanFilter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn state_pre(&self) -> Mat

predicted state (x’(k)): x(k)=Ax(k-1)+Bu(k)
source§

fn state_post(&self) -> Mat

corrected state (x(k)): x(k)=x’(k)+K(k)(z(k)-Hx’(k))
source§

fn transition_matrix(&self) -> Mat

state transition matrix (A)
source§

fn control_matrix(&self) -> Mat

control matrix (B) (not used if there is no control)
source§

fn measurement_matrix(&self) -> Mat

measurement matrix (H)
source§

fn process_noise_cov(&self) -> Mat

process noise covariance matrix (Q)
source§

fn measurement_noise_cov(&self) -> Mat

measurement noise covariance matrix (R)
source§

fn error_cov_pre(&self) -> Mat

priori error estimate covariance matrix (P’(k)): P’(k)=A*P(k-1)*At + Q)
source§

fn gain(&self) -> Mat

Kalman gain matrix (K(k)): K(k)=P’(k)Htinv(H*P’(k)*Ht+R)
source§

fn error_cov_post(&self) -> Mat

posteriori error estimate covariance matrix (P(k)): P(k)=(I-K(k)*H)*P’(k)
source§

fn temp1(&self) -> Mat

source§

fn temp2(&self) -> Mat

source§

fn temp3(&self) -> Mat

source§

fn temp4(&self) -> Mat

source§

fn temp5(&self) -> Mat

source§

impl KernelArgTraitConst for BoxedRef<'_, KernelArg>

source§

fn as_raw_KernelArg(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

source§

fn obj(&self) -> *const c_void

source§

fn sz(&self) -> size_t

source§

fn wscale(&self) -> i32

source§

fn iwscale(&self) -> i32

source§

impl KernelTraitConst for BoxedRef<'_, Kernel>

source§

fn as_raw_Kernel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

source§

fn work_group_size(&self) -> Result<size_t>

source§

fn prefered_work_group_size_multiple(&self) -> Result<size_t>

source§

fn compile_work_group_size(&self, wsz: &mut [size_t]) -> Result<bool>

source§

fn local_mem_size(&self) -> Result<size_t>

source§

fn ptr(&self) -> Result<*mut c_void>

source§

impl KeyPointTraitConst for BoxedRef<'_, Elliptic_KeyPoint>

source§

fn as_raw_KeyPoint(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pt(&self) -> Point2f

coordinates of the keypoints
source§

fn size(&self) -> f32

diameter of the meaningful keypoint neighborhood
source§

fn angle(&self) -> f32

computed orientation of the keypoint (-1 if not applicable); it’s in [0,360) degrees and measured relative to image coordinate system, ie in clockwise.
source§

fn response(&self) -> f32

the response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling
source§

fn octave(&self) -> i32

octave (pyramid layer) from which the keypoint has been extracted
source§

fn class_id(&self) -> i32

object class (if the keypoints need to be clustered by an object they belong to)
source§

fn hash(&self) -> Result<size_t>

source§

impl KeyPointTraitConst for BoxedRef<'_, KeyPoint>

source§

fn as_raw_KeyPoint(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pt(&self) -> Point2f

coordinates of the keypoints
source§

fn size(&self) -> f32

diameter of the meaningful keypoint neighborhood
source§

fn angle(&self) -> f32

computed orientation of the keypoint (-1 if not applicable); it’s in [0,360) degrees and measured relative to image coordinate system, ie in clockwise.
source§

fn response(&self) -> f32

the response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling
source§

fn octave(&self) -> i32

octave (pyramid layer) from which the keypoint has been extracted
source§

fn class_id(&self) -> i32

object class (if the keypoints need to be clustered by an object they belong to)
source§

fn hash(&self) -> Result<size_t>

source§

impl KeyPointsFilterTraitConst for BoxedRef<'_, KeyPointsFilter>

source§

fn as_raw_KeyPointsFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl KeyboardEventTraitConst for BoxedRef<'_, KeyboardEvent>

source§

fn as_raw_KeyboardEvent( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn action(&self) -> KeyboardEvent_Action

source§

fn symbol(&self) -> String

source§

fn code(&self) -> u8

source§

fn modifiers(&self) -> i32

source§

impl KeypointBasedMotionEstimatorGpuTraitConst for BoxedRef<'_, KeypointBasedMotionEstimatorGpu>

source§

fn as_raw_KeypointBasedMotionEstimatorGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn outlier_rejector(&self) -> Result<Ptr<IOutlierRejector>>

source§

impl KeypointBasedMotionEstimatorTraitConst for BoxedRef<'_, KeypointBasedMotionEstimator>

source§

impl KeypointsModelTraitConst for BoxedRef<'_, KeypointsModel>

source§

fn as_raw_KeypointsModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Kinfu_Detail_PoseGraphTraitConst for BoxedRef<'_, Kinfu_Detail_PoseGraph>

source§

fn as_raw_Kinfu_Detail_PoseGraph( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_node_exist(&self, node_id: size_t) -> Result<bool>

source§

fn is_node_fixed(&self, node_id: size_t) -> Result<bool>

source§

fn get_node_pose(&self, node_id: size_t) -> Result<Affine3d>

source§

fn get_nodes_ids(&self) -> Result<Vector<size_t>>

source§

fn get_num_nodes(&self) -> Result<size_t>

source§

fn get_edge_start(&self, i: size_t) -> Result<size_t>

source§

fn get_edge_end(&self, i: size_t) -> Result<size_t>

source§

fn get_num_edges(&self) -> Result<size_t>

source§

fn is_valid(&self) -> Result<bool>

source§

fn calc_energy(&self) -> Result<f64>

source§

impl Kinfu_KinFuTraitConst for BoxedRef<'_, Kinfu_KinFu>

source§

fn as_raw_Kinfu_KinFu(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_params(&self) -> Result<Kinfu_Params>

Get current parameters
source§

fn render(&self, image: &mut impl ToOutputArray) -> Result<()>

Renders a volume into an image Read more
source§

fn render_1( &self, image: &mut impl ToOutputArray, camera_pose: Matx44f ) -> Result<()>

Renders a volume into an image Read more
source§

fn get_cloud( &self, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Gets points and normals of current 3d mesh Read more
source§

fn get_points(&self, points: &mut impl ToOutputArray) -> Result<()>

Gets points of current 3d mesh Read more
source§

fn get_normals( &self, points: &impl ToInputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Calculates normals for given points Read more
source§

fn get_pose(&self) -> Result<Affine3f>

Get current pose in voxel space
source§

impl Kinfu_ParamsTraitConst for BoxedRef<'_, Kinfu_Params>

source§

fn as_raw_Kinfu_Params(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn frame_size(&self) -> Size

frame size in pixels
source§

fn volume_type(&self) -> Kinfu_VolumeType

rgb frame size in pixels
source§

fn intr(&self) -> Matx33f

camera intrinsics
source§

fn rgb_intr(&self) -> Matx33f

rgb camera intrinsics
source§

fn depth_factor(&self) -> f32

pre-scale per 1 meter for input values Read more
source§

fn bilateral_sigma_depth(&self) -> f32

Depth sigma in meters for bilateral smooth
source§

fn bilateral_sigma_spatial(&self) -> f32

Spatial sigma in pixels for bilateral smooth
source§

fn bilateral_kernel_size(&self) -> i32

Kernel size in pixels for bilateral smooth
source§

fn pyramid_levels(&self) -> i32

Number of pyramid levels for ICP
source§

fn volume_dims(&self) -> Vec3i

Resolution of voxel space Read more
source§

fn voxel_size(&self) -> f32

Size of voxel in meters
source§

fn tsdf_min_camera_movement(&self) -> f32

Minimal camera movement in meters Read more
source§

fn volume_pose(&self) -> Affine3f

initial volume pose in meters
source§

fn tsdf_trunc_dist(&self) -> f32

distance to truncate in meters Read more
source§

fn tsdf_max_weight(&self) -> i32

max number of frames per voxel Read more
source§

fn raycast_step_factor(&self) -> f32

A length of one raycast step Read more
source§

fn light_pose(&self) -> Vec3f

light pose for rendering in meters
source§

fn icp_dist_thresh(&self) -> f32

distance theshold for ICP in meters
source§

fn icp_angle_thresh(&self) -> f32

angle threshold for ICP in radians
source§

fn icp_iterations(&self) -> Vector<i32>

number of ICP iterations for each pyramid level
source§

fn truncate_threshold(&self) -> f32

Threshold for depth truncation in meters Read more
source§

impl Kinfu_VolumeParamsTraitConst for BoxedRef<'_, Kinfu_VolumeParams>

source§

fn as_raw_Kinfu_VolumeParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn typ(&self) -> Kinfu_VolumeType

Type of Volume Values can be TSDF (single volume) or HASHTSDF (hashtable of volume units)
source§

fn resolution(&self) -> Vec3i

Resolution of voxel space Number of voxels in each dimension. Applicable only for TSDF Volume. HashTSDF volume only supports equal resolution in all three dimensions
source§

fn unit_resolution(&self) -> i32

Resolution of volumeUnit in voxel space Number of voxels in each dimension for volumeUnit Applicable only for hashTSDF.
source§

fn pose(&self) -> Affine3f

Initial pose of the volume in meters
source§

fn voxel_size(&self) -> f32

Length of voxels in meters
source§

fn tsdf_trunc_dist(&self) -> f32

TSDF truncation distance Distances greater than value from surface will be truncated to 1.0
source§

fn max_weight(&self) -> i32

Max number of frames to integrate per voxel Represents the max number of frames over which a running average of the TSDF is calculated for a voxel
source§

fn depth_trunc_threshold(&self) -> f32

Threshold for depth truncation in meters Truncates the depth greater than threshold to 0
source§

fn raycast_step_factor(&self) -> f32

Length of single raycast step Describes the percentage of voxel length that is skipped per march
source§

impl Kinfu_VolumeTraitConst for BoxedRef<'_, Kinfu_Volume>

source§

fn as_raw_Kinfu_Volume(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn voxel_size(&self) -> f32

source§

fn voxel_size_inv(&self) -> f32

source§

fn pose(&self) -> Affine3f

source§

fn raycast_step_factor(&self) -> f32

source§

fn raycast( &self, camera_pose: Matx44f, intrinsics: Kinfu_Intr, frame_size: Size, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray ) -> Result<()>

source§

fn raycast_1( &self, camera_pose: Matx44f, intrinsics: Kinfu_Intr, frame_size: Size, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray, colors: &mut impl ToOutputArray ) -> Result<()>

source§

fn fetch_normals( &self, points: &impl ToInputArray, _normals: &mut impl ToOutputArray ) -> Result<()>

source§

fn fetch_points_normals( &self, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray ) -> Result<()>

source§

fn fetch_points_normals_colors( &self, unnamed: &mut impl ToOutputArray, unnamed_1: &mut impl ToOutputArray, unnamed_2: &mut impl ToOutputArray ) -> Result<()>

source§

impl LATCHTraitConst for BoxedRef<'_, LATCH>

source§

fn as_raw_LATCH(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_bytes(&self) -> Result<i32>

source§

fn get_rotation_invariance(&self) -> Result<bool>

source§

fn get_half_ss_dsize(&self) -> Result<i32>

source§

fn get_sigma(&self) -> Result<f64>

source§

fn get_default_name(&self) -> Result<String>

source§

impl LBPHFaceRecognizerTraitConst for BoxedRef<'_, LBPHFaceRecognizer>

source§

fn as_raw_LBPHFaceRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_grid_x(&self) -> Result<i32>

See also Read more
source§

fn get_grid_y(&self) -> Result<i32>

See also Read more
source§

fn get_radius(&self) -> Result<i32>

See also Read more
source§

fn get_neighbors(&self) -> Result<i32>

See also Read more
source§

fn get_threshold(&self) -> Result<f64>

See also Read more
source§

fn get_histograms(&self) -> Result<Vector<Mat>>

source§

fn get_labels(&self) -> Result<Mat>

source§

impl LDATraitConst for BoxedRef<'_, LDA>

source§

fn as_raw_LDA(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn save(&self, filename: &str) -> Result<()>

Serializes this object to a given filename.
source§

fn save_1(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Serializes this object to a given cv::FileStorage.
source§

fn eigenvectors(&self) -> Result<Mat>

Returns the eigenvectors of this LDA.
source§

fn eigenvalues(&self) -> Result<Mat>

Returns the eigenvalues of this LDA.
source§

impl LMSolverTraitConst for BoxedRef<'_, LMSolver>

source§

fn as_raw_LMSolver(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn run(&self, param: &mut impl ToInputOutputArray) -> Result<i32>

Runs Levenberg-Marquardt algorithm using the passed vector of parameters as the start point. The final vector of parameters (whether the algorithm converged or not) is stored at the same vector. The method returns the number of iterations used. If it’s equal to the previously specified maxIters, there is a big chance the algorithm did not converge. Read more
source§

fn get_max_iters(&self) -> Result<i32>

Retrieves the current maximum number of iterations
source§

impl LMSolver_CallbackTraitConst for BoxedRef<'_, LMSolver_Callback>

source§

fn as_raw_LMSolver_Callback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute( &self, param: &impl ToInputArray, err: &mut impl ToOutputArray, j: &mut impl ToOutputArray ) -> Result<bool>

computes error and Jacobian for the specified vector of parameters Read more
source§

impl LRNLayerTraitConst for BoxedRef<'_, LRNLayer>

source§

fn as_raw_LRNLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn typ(&self) -> i32

source§

fn size(&self) -> i32

source§

fn alpha(&self) -> f32

source§

fn beta(&self) -> f32

source§

fn bias(&self) -> f32

source§

fn norm_by_size(&self) -> bool

source§

impl LSDDetectorTraitConst for BoxedRef<'_, LSDDetector>

source§

fn as_raw_LSDDetector(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect_multiple( &self, images: &Vector<Mat>, keylines: &mut Vector<Vector<KeyLine>>, scale: i32, num_octaves: i32, masks: &Vector<Mat> ) -> Result<()>

Detect lines inside an image. Read more
source§

fn detect_multiple_def( &self, images: &Vector<Mat>, keylines: &mut Vector<Vector<KeyLine>>, scale: i32, num_octaves: i32 ) -> Result<()>

@overload Read more
source§

impl LSTMLayerTraitConst for BoxedRef<'_, LSTMLayer>

source§

fn as_raw_LSTMLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LUCIDTraitConst for BoxedRef<'_, LUCID>

source§

fn as_raw_LUCID(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_lucid_kernel(&self) -> Result<i32>

source§

fn get_blur_kernel(&self) -> Result<i32>

source§

fn get_default_name(&self) -> Result<String>

source§

impl LargeKinfuTraitConst for BoxedRef<'_, LargeKinfu>

source§

fn as_raw_LargeKinfu(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_params(&self) -> Result<Params>

source§

fn render(&self, image: &mut impl ToOutputArray) -> Result<()>

source§

fn render_1( &self, image: &mut impl ToOutputArray, camera_pose: Matx44f ) -> Result<()>

source§

fn get_cloud( &self, points: &mut impl ToOutputArray, normals: &mut impl ToOutputArray ) -> Result<()>

source§

fn get_points(&self, points: &mut impl ToOutputArray) -> Result<()>

source§

fn get_normals( &self, points: &impl ToInputArray, normals: &mut impl ToOutputArray ) -> Result<()>

source§

fn get_pose(&self) -> Result<Affine3f>

source§

impl LayerFactoryTraitConst for BoxedRef<'_, LayerFactory>

source§

fn as_raw_LayerFactory(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LayerNormLayerTraitConst for BoxedRef<'_, LayerNormLayer>

source§

fn as_raw_LayerNormLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has_bias(&self) -> bool

source§

fn axis(&self) -> i32

source§

fn epsilon(&self) -> f32

source§

impl LayerParamsTraitConst for BoxedRef<'_, LayerParams>

source§

fn as_raw_LayerParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters stored as blobs.
source§

fn name(&self) -> String

Name of the layer instance (optional, can be used internal purposes).
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory (optional).
source§

impl LayerTraitConst for BoxedRef<'_, AbsLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AccumLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AcosLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AcoshLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ActivationLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ActivationLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ArgLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AsinLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AsinhLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AtanLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AtanhLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, AttentionLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, BNLLLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, BaseConvolutionLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, BatchNormLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, BatchNormLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, BlankLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CeilLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CeluLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ChannelsPReLULayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CompareLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ConcatLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ConstLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ConvolutionLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ConvolutionLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CorrelationLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CosLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CoshLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CropAndResizeLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CropLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, CumSumLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, DataAugmentationLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, DeconvolutionLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, DequantizeLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, DetectionOutputLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ELULayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, EinsumLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, EltwiseLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, EltwiseLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ErfLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ExpLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ExpandLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, FlattenLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, FloorLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, FlowWarpLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, GRULayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, GatherElementsLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, GatherLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, GeluApproximationLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, GeluLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, GemmLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, HardSigmoidLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, HardSwishLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, InnerProductLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, InnerProductLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, InstanceNormLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, InterpLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, LRNLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, LSTMLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, Layer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, LayerNormLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, LogLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, MVNLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, MatMulLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, MaxUnpoolLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, MishLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, NaryEltwiseLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, NormalizeBBoxLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, NotLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, PaddingLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, PermuteLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, PoolingLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, PoolingLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, PowerLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, PriorBoxLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ProposalLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, QuantizeLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, RNNLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ReLU6Layer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ReLULayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ReciprocalLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ReduceLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, RegionLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ReorgLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, RequantizeLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ReshapeLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ResizeLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, RoundLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ScaleLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ScaleLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ScatterLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ScatterNDLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SeluLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ShiftLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ShiftLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ShrinkLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ShuffleChannelLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SigmoidLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SignLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SinLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SinhLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SliceLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SoftmaxLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SoftmaxLayerInt8>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SoftplusLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SoftsignLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SplitLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SqrtLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, SwishLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, TanHLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, TanLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, ThresholdedReluLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LayerTraitConst for BoxedRef<'_, TileLayer>

source§

fn as_raw_Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn blobs(&self) -> Vector<Mat>

List of learned parameters must be stored here to allow read them by using Net::getParam().
source§

fn name(&self) -> String

Name of the layer instance, can be used for logging or other internal purposes.
source§

fn typ(&self) -> String

Type name which was used for creating layer by layer factory.
source§

fn preferable_target(&self) -> i32

prefer target for layer forwarding
source§

fn apply_halide_scheduler( &self, node: &mut Ptr<BackendNode>, inputs: &Vector<Mat>, outputs: &Vector<Mat>, target_id: i32 ) -> Result<()>

Automatic Halide scheduling based on layer hyper-parameters. Read more
source§

fn get_scale_shift( &self, scale: &mut impl MatTrait, shift: &mut impl MatTrait ) -> Result<()>

Returns parameters of layers with channel-wise multiplication and addition. Read more
source§

fn get_scale_zeropoint( &self, scale: &mut f32, zeropoint: &mut i32 ) -> Result<()>

Returns scale and zeropoint of layers Read more
source§

fn get_memory_shapes( &self, inputs: &Vector<MatShape>, required_outputs: i32, outputs: &mut Vector<MatShape>, internals: &mut Vector<MatShape> ) -> Result<bool>

source§

fn get_flops( &self, inputs: &Vector<MatShape>, outputs: &Vector<MatShape> ) -> Result<i64>

source§

impl LearningBasedWBTraitConst for BoxedRef<'_, LearningBasedWB>

source§

fn as_raw_LearningBasedWB( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_range_max_val(&self) -> Result<i32>

Maximum possible value of the input image (e.g. 255 for 8 bit images, 4095 for 12 bit images) Read more
source§

fn get_saturation_threshold(&self) -> Result<f32>

Threshold that is used to determine saturated pixels, i.e. pixels where at least one of the channels exceeds inline formula are ignored. Read more
source§

fn get_hist_bin_num(&self) -> Result<i32>

Defines the size of one dimension of a three-dimensional RGB histogram that is used internally by the algorithm. It often makes sense to increase the number of bins for images with higher bit depth (e.g. 256 bins for a 12 bit image). Read more
source§

impl LineIteratorTraitConst for BoxedRef<'_, LineIterator>

source§

fn as_raw_LineIterator(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ptr(&self) -> *const u8

source§

fn ptr0(&self) -> *const u8

source§

fn step(&self) -> i32

source§

fn elem_size(&self) -> i32

source§

fn err(&self) -> i32

source§

fn count(&self) -> i32

source§

fn minus_delta(&self) -> i32

source§

fn plus_delta(&self) -> i32

source§

fn minus_step(&self) -> i32

source§

fn plus_step(&self) -> i32

source§

fn minus_shift(&self) -> i32

source§

fn plus_shift(&self) -> i32

source§

fn p(&self) -> Point

source§

fn ptmode(&self) -> bool

source§

fn pos(&self) -> Result<Point>

Returns coordinates of the current pixel.
source§

impl LineMod_ColorGradientTraitConst for BoxedRef<'_, LineMod_ColorGradient>

source§

fn as_raw_LineMod_ColorGradient( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn weak_threshold(&self) -> f32

source§

fn num_features(&self) -> size_t

source§

fn strong_threshold(&self) -> f32

source§

fn name(&self) -> Result<String>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

impl LineMod_DepthNormalTraitConst for BoxedRef<'_, LineMod_DepthNormal>

source§

fn as_raw_LineMod_DepthNormal( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn distance_threshold(&self) -> i32

source§

fn difference_threshold(&self) -> i32

source§

fn num_features(&self) -> size_t

source§

fn extract_threshold(&self) -> i32

source§

fn name(&self) -> Result<String>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

impl LineMod_DetectorTraitConst for BoxedRef<'_, LineMod_Detector>

source§

fn as_raw_LineMod_Detector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn match_( &self, sources: &Vector<Mat>, threshold: f32, matches: &mut Vector<LineMod_Match>, class_ids: &Vector<String>, quantized_images: &mut impl ToOutputArray, masks: &Vector<Mat> ) -> Result<()>

\brief Detect objects by template matching. Read more
source§

fn match__def( &self, sources: &Vector<Mat>, threshold: f32, matches: &mut Vector<LineMod_Match> ) -> Result<()>

\brief Detect objects by template matching. Read more
source§

fn get_modalities(&self) -> Result<Vector<Ptr<LineMod_Modality>>>

\brief Get the modalities used by this detector. Read more
source§

fn get_t(&self, pyramid_level: i32) -> Result<i32>

\brief Get sampling step T at pyramid_level.
source§

fn pyramid_levels(&self) -> Result<i32>

\brief Get number of pyramid levels used by this detector.
source§

fn get_templates( &self, class_id: &str, template_id: i32 ) -> Result<Vector<LineMod_Template>>

\brief Get the template pyramid identified by template_id. Read more
source§

fn num_templates(&self) -> Result<i32>

source§

fn num_templates_1(&self, class_id: &str) -> Result<i32>

source§

fn num_classes(&self) -> Result<i32>

source§

fn class_ids(&self) -> Result<Vector<String>>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

fn write_class( &self, class_id: &str, fs: &mut impl FileStorageTrait ) -> Result<()>

source§

fn write_classes(&self, format: &str) -> Result<()>

C++ default parameters Read more
source§

fn write_classes_def(&self) -> Result<()>

source§

impl LineMod_MatchTraitConst for BoxedRef<'_, LineMod_Match>

source§

fn as_raw_LineMod_Match( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn x(&self) -> i32

source§

fn y(&self) -> i32

source§

fn similarity(&self) -> f32

source§

fn class_id(&self) -> String

source§

fn template_id(&self) -> i32

source§

fn less_than(&self, rhs: &impl LineMod_MatchTraitConst) -> Result<bool>

Sort matches with high similarity to the front
source§

fn equals(&self, rhs: &impl LineMod_MatchTraitConst) -> Result<bool>

source§

impl LineMod_ModalityTraitConst for BoxedRef<'_, LineMod_ColorGradient>

source§

fn as_raw_LineMod_Modality( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn process( &self, src: &impl MatTraitConst, mask: &impl MatTraitConst ) -> Result<Ptr<LineMod_QuantizedPyramid>>

\brief Form a quantized image pyramid from a source image. Read more
source§

fn process_def( &self, src: &impl MatTraitConst ) -> Result<Ptr<LineMod_QuantizedPyramid>>

\brief Form a quantized image pyramid from a source image. Read more
source§

fn name(&self) -> Result<String>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

impl LineMod_ModalityTraitConst for BoxedRef<'_, LineMod_DepthNormal>

source§

fn as_raw_LineMod_Modality( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn process( &self, src: &impl MatTraitConst, mask: &impl MatTraitConst ) -> Result<Ptr<LineMod_QuantizedPyramid>>

\brief Form a quantized image pyramid from a source image. Read more
source§

fn process_def( &self, src: &impl MatTraitConst ) -> Result<Ptr<LineMod_QuantizedPyramid>>

\brief Form a quantized image pyramid from a source image. Read more
source§

fn name(&self) -> Result<String>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

impl LineMod_ModalityTraitConst for BoxedRef<'_, LineMod_Modality>

source§

fn as_raw_LineMod_Modality( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn process( &self, src: &impl MatTraitConst, mask: &impl MatTraitConst ) -> Result<Ptr<LineMod_QuantizedPyramid>>

\brief Form a quantized image pyramid from a source image. Read more
source§

fn process_def( &self, src: &impl MatTraitConst ) -> Result<Ptr<LineMod_QuantizedPyramid>>

\brief Form a quantized image pyramid from a source image. Read more
source§

fn name(&self) -> Result<String>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

impl LineMod_QuantizedPyramidTraitConst for BoxedRef<'_, LineMod_QuantizedPyramid>

source§

fn as_raw_LineMod_QuantizedPyramid( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn quantize(&self, dst: &mut impl MatTrait) -> Result<()>

\brief Compute quantized image at current pyramid level for online detection. Read more
source§

fn extract_template( &self, templ: &mut impl LineMod_TemplateTrait ) -> Result<bool>

\brief Extract most discriminant features at current pyramid level to form a new template. Read more
source§

impl LineMod_TemplateTraitConst for BoxedRef<'_, LineMod_Template>

source§

fn as_raw_LineMod_Template( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn width(&self) -> i32

source§

fn height(&self) -> i32

source§

fn pyramid_level(&self) -> i32

source§

fn features(&self) -> Vector<LineMod_Feature>

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

impl LineSegmentDetectorTraitConst for BoxedRef<'_, LineSegmentDetector>

source§

fn as_raw_LineSegmentDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LinearIndexParamsTraitConst for BoxedRef<'_, LinearIndexParams>

source§

fn as_raw_LinearIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LogLayerTraitConst for BoxedRef<'_, LogLayer>

source§

fn as_raw_LogLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LogTagTraitConst for BoxedRef<'_, LogTag>

source§

fn as_raw_LogTag(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn name(&self) -> String

source§

fn level(&self) -> LogLevel

source§

impl LogToStdoutTraitConst for BoxedRef<'_, LogToStdout>

source§

fn as_raw_LogToStdout(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LogisticRegressionTraitConst for BoxedRef<'_, LogisticRegression>

source§

fn as_raw_LogisticRegression( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_learning_rate(&self) -> Result<f64>

Learning rate. Read more
source§

fn get_iterations(&self) -> Result<i32>

Number of iterations. Read more
source§

fn get_regularization(&self) -> Result<i32>

Kind of regularization to be applied. See LogisticRegression::RegKinds. Read more
source§

fn get_train_method(&self) -> Result<i32>

Kind of training method used. See LogisticRegression::Methods. Read more
source§

fn get_mini_batch_size(&self) -> Result<i32>

Specifies the number of training samples taken in each step of Mini-Batch Gradient Descent. Will only be used if using LogisticRegression::MINI_BATCH training algorithm. It has to take values less than the total number of training samples. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Termination criteria of the algorithm. Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts responses for input samples and returns a float type. Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts responses for input samples and returns a float type. Read more
source§

fn get_learnt_thetas(&self) -> Result<Mat>

This function returns the trained parameters arranged across rows. Read more
source§

impl LookUpTableTraitConst for BoxedRef<'_, LookUpTable>

source§

fn as_raw_LookUpTable(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl LpMotionStabilizerTraitConst for BoxedRef<'_, LpMotionStabilizer>

source§

fn as_raw_LpMotionStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

fn frame_size(&self) -> Result<Size>

source§

fn trim_ratio(&self) -> Result<f32>

source§

fn weight1(&self) -> Result<f32>

source§

fn weight2(&self) -> Result<f32>

source§

fn weight3(&self) -> Result<f32>

source§

fn weight4(&self) -> Result<f32>

source§

impl LshIndexParamsTraitConst for BoxedRef<'_, LshIndexParams>

source§

fn as_raw_LshIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MACETraitConst for BoxedRef<'_, MACE>

source§

fn as_raw_MACE(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn same(&self, query: &impl ToInputArray) -> Result<bool>

correlate query img and threshold to min class value Read more
source§

impl MCC_CCheckerDetectorTraitConst for BoxedRef<'_, MCC_CCheckerDetector>

source§

fn as_raw_MCC_CCheckerDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MCC_CCheckerDrawTraitConst for BoxedRef<'_, MCC_CCheckerDraw>

source§

fn as_raw_MCC_CCheckerDraw( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MCC_CCheckerTraitConst for BoxedRef<'_, MCC_CChecker>

source§

fn as_raw_MCC_CChecker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MCC_DetectorParametersTraitConst for BoxedRef<'_, MCC_DetectorParameters>

source§

impl MSDDetectorTraitConst for BoxedRef<'_, MSDDetector>

source§

impl MSERTraitConst for BoxedRef<'_, MSER>

source§

impl MVNLayerTraitConst for BoxedRef<'_, MVNLayer>

source§

fn as_raw_MVNLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn eps(&self) -> f32

source§

fn norm_variance(&self) -> bool

source§

fn across_channels(&self) -> bool

source§

impl MarrHildrethHashTraitConst for BoxedRef<'_, MarrHildrethHash>

source§

fn as_raw_MarrHildrethHash( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_alpha(&self) -> Result<f32>

self explain
source§

fn get_scale(&self) -> Result<f32>

self explain
source§

impl MaskFrameSourceTraitConst for BoxedRef<'_, MaskFrameSource>

source§

fn as_raw_MaskFrameSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MatConstIteratorTraitConst for BoxedRef<'_, MatConstIterator>

source§

fn as_raw_MatConstIterator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn m(&self) -> Mat

source§

fn elem_size(&self) -> size_t

source§

fn ptr(&self) -> *const u8

source§

fn slice_start(&self) -> *const u8

source§

fn slice_end(&self) -> *const u8

source§

fn try_deref(&self) -> Result<*const u8>

returns the current matrix element
source§

fn get(&self, i: ptrdiff_t) -> Result<*const u8>

returns the i-th matrix element, relative to the current
source§

fn pos(&self) -> Result<Point>

returns the current iterator position
source§

unsafe fn pos_to(&self, _idx: *mut i32) -> Result<()>

returns the current iterator position
source§

fn lpos(&self) -> Result<ptrdiff_t>

source§

fn typ(&self) -> i32

source§

impl MatExprTraitConst for BoxedRef<'_, MatExpr>

source§

fn as_raw_MatExpr(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

source§

fn a(&self) -> Mat

source§

fn b(&self) -> Mat

source§

fn c(&self) -> Mat

source§

fn alpha(&self) -> f64

source§

fn beta(&self) -> f64

source§

fn s(&self) -> Scalar

source§

fn to_mat(&self) -> Result<Mat>

source§

fn size(&self) -> Result<Size>

source§

fn typ(&self) -> Result<i32>

source§

fn row(&self, y: i32) -> Result<MatExpr>

source§

fn col(&self, x: i32) -> Result<MatExpr>

source§

fn diag(&self, d: i32) -> Result<MatExpr>

C++ default parameters Read more
source§

fn diag_def(&self) -> Result<MatExpr>

source§

fn rowscols( &self, row_range: &impl RangeTraitConst, col_range: &impl RangeTraitConst ) -> Result<MatExpr>

source§

fn roi(&self, roi: Rect) -> Result<MatExpr>

source§

fn t(&self) -> Result<MatExpr>

source§

fn inv(&self, method: i32) -> Result<MatExpr>

C++ default parameters Read more
source§

fn inv_def(&self) -> Result<MatExpr>

source§

fn mul_matexpr(&self, e: &impl MatExprTraitConst, scale: f64) -> Result<MatExpr>

C++ default parameters Read more
source§

fn mul_matexpr_def(&self, e: &impl MatExprTraitConst) -> Result<MatExpr>

source§

fn mul(&self, m: &impl MatTraitConst, scale: f64) -> Result<MatExpr>

C++ default parameters Read more
source§

fn mul_def(&self, m: &impl MatTraitConst) -> Result<MatExpr>

source§

fn cross(&self, m: &impl MatTraitConst) -> Result<Mat>

source§

fn dot(&self, m: &impl MatTraitConst) -> Result<f64>

source§

impl MatMulLayerTraitConst for BoxedRef<'_, MatMulLayer>

source§

fn as_raw_MatMulLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MatOpTraitConst for BoxedRef<'_, MatOp>

source§

fn as_raw_MatOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn element_wise(&self, expr: &impl MatExprTraitConst) -> Result<bool>

source§

fn assign( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait, typ: i32 ) -> Result<()>

C++ default parameters Read more
source§

fn assign_def( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn roi( &self, expr: &impl MatExprTraitConst, row_range: &impl RangeTraitConst, col_range: &impl RangeTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn diag( &self, expr: &impl MatExprTraitConst, d: i32, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn aug_assign_add( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn aug_assign_subtract( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn aug_assign_multiply( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn aug_assign_divide( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn aug_assign_and( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn aug_assign_or( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn aug_assign_xor( &self, expr: &impl MatExprTraitConst, m: &mut impl MatTrait ) -> Result<()>

source§

fn add( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn add_scalar( &self, expr1: &impl MatExprTraitConst, s: Scalar, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn subtract( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn subtract_scalar( &self, s: Scalar, expr: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn multiply( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait, scale: f64 ) -> Result<()>

C++ default parameters Read more
source§

fn multiply_def( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn multiply_f64( &self, expr1: &impl MatExprTraitConst, s: f64, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn divide( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait, scale: f64 ) -> Result<()>

C++ default parameters Read more
source§

fn divide_def( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn divide_f64( &self, s: f64, expr: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn abs( &self, expr: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn transpose( &self, expr: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn matmul( &self, expr1: &impl MatExprTraitConst, expr2: &impl MatExprTraitConst, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn invert( &self, expr: &impl MatExprTraitConst, method: i32, res: &mut impl MatExprTrait ) -> Result<()>

source§

fn size(&self, expr: &impl MatExprTraitConst) -> Result<Size>

source§

fn typ(&self, expr: &impl MatExprTraitConst) -> Result<i32>

source§

impl MatSizeTraitConst for BoxedRef<'_, MatSize>

source§

fn as_raw_MatSize(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn p(&self) -> *const i32

source§

fn dims(&self) -> i32

source§

fn apply(&self) -> Result<Size>

source§

fn get(&self, i: i32) -> Result<i32>

source§

fn to_xconst_i32(&self) -> *const i32

source§

fn equals(&self, sz: &impl MatSizeTraitConst) -> bool

source§

fn not_equals(&self, sz: &impl MatSizeTraitConst) -> bool

source§

impl MatStepTraitConst for BoxedRef<'_, MatStep>

source§

fn as_raw_MatStep(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn p(&self) -> *const size_t

source§

fn buf(&self) -> &[size_t; 2]

source§

fn get(&self, i: i32) -> size_t

source§

fn to_size_t(&self) -> Result<size_t>

source§

impl MatTraitConst for BoxedRef<'_, Mat>

source§

fn as_raw_Mat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

! includes several bit-fields: Read more
source§

fn dims(&self) -> i32

the matrix dimensionality, >= 2
source§

fn rows(&self) -> i32

the number of rows and columns or (-1, -1) when the matrix has more than 2 dimensions
source§

fn cols(&self) -> i32

the number of rows and columns or (-1, -1) when the matrix has more than 2 dimensions
source§

fn data(&self) -> *const u8

pointer to the data
source§

fn datastart(&self) -> *const u8

helper fields used in locateROI and adjustROI
source§

fn dataend(&self) -> *const u8

source§

fn datalimit(&self) -> *const u8

source§

fn mat_size(&self) -> MatSize

source§

fn mat_step(&self) -> MatStep

source§

fn get_umat( &self, access_flags: AccessFlag, usage_flags: UMatUsageFlags ) -> Result<UMat>

retrieve UMat from Mat Read more
source§

fn get_umat_def(&self, access_flags: AccessFlag) -> Result<UMat>

retrieve UMat from Mat Read more
source§

fn row(&self, y: i32) -> Result<BoxedRef<'_, Mat>>

Creates a matrix header for the specified matrix row. Read more
source§

fn col(&self, x: i32) -> Result<BoxedRef<'_, Mat>>

Creates a matrix header for the specified matrix column. Read more
source§

fn row_bounds(&self, startrow: i32, endrow: i32) -> Result<BoxedRef<'_, Mat>>

Creates a matrix header for the specified row span. Read more
source§

fn row_range(&self, r: &impl RangeTraitConst) -> Result<BoxedRef<'_, Mat>>

Creates a matrix header for the specified row span. Read more
source§

fn col_bounds(&self, startcol: i32, endcol: i32) -> Result<BoxedRef<'_, Mat>>

Creates a matrix header for the specified column span. Read more
source§

fn col_range(&self, r: &impl RangeTraitConst) -> Result<BoxedRef<'_, Mat>>

Creates a matrix header for the specified column span. Read more
source§

fn diag(&self, d: i32) -> Result<BoxedRef<'_, Mat>>

Extracts a diagonal from a matrix Read more
source§

fn diag_def(&self) -> Result<BoxedRef<'_, Mat>>

Extracts a diagonal from a matrix Read more
source§

fn try_clone(&self) -> Result<Mat>

Creates a full copy of the array and the underlying data. Read more
source§

fn copy_to(&self, m: &mut impl ToOutputArray) -> Result<()>

Copies the matrix to another one. Read more
source§

fn copy_to_masked( &self, m: &mut impl ToOutputArray, mask: &impl ToInputArray ) -> Result<()>

Copies the matrix to another one. Read more
source§

fn convert_to( &self, m: &mut impl ToOutputArray, rtype: i32, alpha: f64, beta: f64 ) -> Result<()>

Converts an array to another data type with optional scaling. Read more
source§

fn convert_to_def(&self, m: &mut impl ToOutputArray, rtype: i32) -> Result<()>

Converts an array to another data type with optional scaling. Read more
source§

fn assign_to(&self, m: &mut impl MatTrait, typ: i32) -> Result<()>

Provides a functional form of convertTo. Read more
source§

fn assign_to_def(&self, m: &mut impl MatTrait) -> Result<()>

Provides a functional form of convertTo. Read more
source§

fn reshape(&self, cn: i32, rows: i32) -> Result<BoxedRef<'_, Mat>>

Changes the shape and/or the number of channels of a 2D matrix without copying the data. Read more
source§

fn reshape_def(&self, cn: i32) -> Result<BoxedRef<'_, Mat>>

Changes the shape and/or the number of channels of a 2D matrix without copying the data. Read more
source§

fn reshape_nd(&self, cn: i32, newsz: &[i32]) -> Result<BoxedRef<'_, Mat>>

Changes the shape and/or the number of channels of a 2D matrix without copying the data. Read more
source§

fn reshape_nd_vec( &self, cn: i32, newshape: &Vector<i32> ) -> Result<BoxedRef<'_, Mat>>

Changes the shape and/or the number of channels of a 2D matrix without copying the data. Read more
source§

fn t(&self) -> Result<MatExpr>

Transposes a matrix. Read more
source§

fn inv(&self, method: i32) -> Result<MatExpr>

Inverses a matrix. Read more
source§

fn inv_def(&self) -> Result<MatExpr>

Inverses a matrix. Read more
source§

fn mul(&self, m: &impl ToInputArray, scale: f64) -> Result<MatExpr>

Performs an element-wise multiplication or division of the two matrices. Read more
source§

fn mul_def(&self, m: &impl ToInputArray) -> Result<MatExpr>

Performs an element-wise multiplication or division of the two matrices. Read more
source§

fn cross(&self, m: &impl ToInputArray) -> Result<Mat>

Computes a cross-product of two 3-element vectors. Read more
source§

fn dot(&self, m: &impl ToInputArray) -> Result<f64>

Computes a dot-product of two vectors. Read more
source§

fn locate_roi(&self, whole_size: &mut Size, ofs: &mut Point) -> Result<()>

Locates the matrix header within a parent matrix. Read more
source§

fn rowscols( &self, row_range: impl RangeTrait, col_range: impl RangeTrait ) -> Result<BoxedRef<'_, Mat>>

Extracts a rectangular submatrix. Read more
source§

fn roi(&self, roi: Rect) -> Result<BoxedRef<'_, Mat>>

Extracts a rectangular submatrix. Read more
source§

fn ranges(&self, ranges: &Vector<Range>) -> Result<BoxedRef<'_, Mat>>

Extracts a rectangular submatrix. Read more
source§

fn is_continuous(&self) -> bool

Reports whether the matrix is continuous or not. Read more
source§

fn is_submatrix(&self) -> bool

returns true if the matrix is a submatrix of another matrix
source§

fn elem_size(&self) -> Result<size_t>

Returns the matrix element size in bytes. Read more
source§

fn elem_size1(&self) -> size_t

Returns the size of each matrix element channel in bytes. Read more
source§

fn typ(&self) -> i32

Returns the type of a matrix element. Read more
source§

fn depth(&self) -> i32

Returns the depth of a matrix element. Read more
source§

fn channels(&self) -> i32

Returns the number of matrix channels. Read more
source§

fn step1(&self, i: i32) -> Result<size_t>

Returns a normalized step. Read more
source§

fn step1_def(&self) -> Result<size_t>

Returns a normalized step. Read more
source§

fn empty(&self) -> bool

Returns true if the array has no elements. Read more
source§

fn total(&self) -> size_t

Returns the total number of array elements. Read more
source§

fn total_slice(&self, start_dim: i32, end_dim: i32) -> Result<size_t>

Returns the total number of array elements. Read more
source§

fn total_slice_def(&self, start_dim: i32) -> Result<size_t>

Returns the total number of array elements. Read more
source§

fn check_vector( &self, elem_channels: i32, depth: i32, require_continuous: bool ) -> Result<i32>

Parameters Read more
source§

fn check_vector_def(&self, elem_channels: i32) -> Result<i32>

Parameters Read more
source§

fn ptr(&self, i0: i32) -> Result<*const u8>

Returns a pointer to the specified matrix row. Read more
source§

fn ptr_def(&self) -> Result<*const u8>

@overload Read more
source§

fn ptr_2d(&self, row: i32, col: i32) -> Result<*const u8>

Returns a pointer to the specified matrix row. Read more
source§

fn ptr_3d(&self, i0: i32, i1: i32, i2: i32) -> Result<*const u8>

Returns a pointer to the specified matrix row. Read more
source§

fn ptr_nd(&self, idx: &[i32]) -> Result<*const u8>

Returns a pointer to the specified matrix row. Read more
source§

fn at<T: DataType>(&self, i0: i32) -> Result<&T>

Returns a reference to the specified array element. Read more
source§

fn at_2d<T: DataType>(&self, row: i32, col: i32) -> Result<&T>

Returns a reference to the specified array element. Read more
source§

fn at_3d<T: DataType>(&self, i0: i32, i1: i32, i2: i32) -> Result<&T>

Returns a reference to the specified array element. Read more
source§

fn at_nd<T: DataType>(&self, idx: &[i32]) -> Result<&T>

Returns a reference to the specified array element. Read more
source§

fn at_pt<T: DataType>(&self, pt: Point) -> Result<&T>

Returns a reference to the specified array element. Read more
source§

fn size(&self) -> Result<Size>

source§

impl Matx_AddOpTraitConst for BoxedRef<'_, Matx_AddOp>

source§

fn as_raw_Matx_AddOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Matx_DivOpTraitConst for BoxedRef<'_, Matx_DivOp>

source§

fn as_raw_Matx_DivOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Matx_MatMulOpTraitConst for BoxedRef<'_, Matx_MatMulOp>

source§

fn as_raw_Matx_MatMulOp( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Matx_MulOpTraitConst for BoxedRef<'_, Matx_MulOp>

source§

fn as_raw_Matx_MulOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Matx_ScaleOpTraitConst for BoxedRef<'_, Matx_ScaleOp>

source§

fn as_raw_Matx_ScaleOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Matx_SubOpTraitConst for BoxedRef<'_, Matx_SubOp>

source§

fn as_raw_Matx_SubOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Matx_TOpTraitConst for BoxedRef<'_, Matx_TOp>

source§

fn as_raw_Matx_TOp(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MaxUnpoolLayerTraitConst for BoxedRef<'_, MaxUnpoolLayer>

source§

fn as_raw_MaxUnpoolLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pool_kernel(&self) -> Size

source§

fn pool_pad(&self) -> Size

source§

fn pool_stride(&self) -> Size

source§

impl MediaFrameTraitConst for BoxedRef<'_, MediaFrame>

source§

fn as_raw_MediaFrame(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn desc(&self) -> Result<GFrameDesc>

Returns a media frame descriptor – the information about the media format, dimensions, etc. Read more
source§

fn blob_params(&self) -> Result<any>

@private – exclude from the OpenCV documentation for now.
source§

impl MediaFrame_IAdapterTraitConst for BoxedRef<'_, MediaFrame_IAdapter>

source§

fn as_raw_MediaFrame_IAdapter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn meta(&self) -> Result<GFrameDesc>

source§

fn blob_params(&self) -> Result<any>

source§

impl MediaFrame_ViewTraitConst for BoxedRef<'_, MediaFrame_View>

source§

fn as_raw_MediaFrame_View( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MercatorWarperTraitConst for BoxedRef<'_, MercatorWarper>

source§

fn as_raw_MercatorWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl MergeDebevecTraitConst for BoxedRef<'_, MergeDebevec>

source§

fn as_raw_MergeDebevec(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MergeExposuresTraitConst for BoxedRef<'_, MergeDebevec>

source§

fn as_raw_MergeExposures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MergeExposuresTraitConst for BoxedRef<'_, MergeExposures>

source§

fn as_raw_MergeExposures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MergeExposuresTraitConst for BoxedRef<'_, MergeMertens>

source§

fn as_raw_MergeExposures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MergeExposuresTraitConst for BoxedRef<'_, MergeRobertson>

source§

fn as_raw_MergeExposures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MergeMertensTraitConst for BoxedRef<'_, MergeMertens>

source§

fn as_raw_MergeMertens(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_contrast_weight(&self) -> Result<f32>

source§

fn get_saturation_weight(&self) -> Result<f32>

source§

fn get_exposure_weight(&self) -> Result<f32>

source§

impl MergeRobertsonTraitConst for BoxedRef<'_, MergeRobertson>

source§

fn as_raw_MergeRobertson( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MeshTraitConst for BoxedRef<'_, Mesh>

source§

fn as_raw_Mesh(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn cloud(&self) -> Mat

point coordinates of type CV_32FC3 or CV_64FC3 with only 1 row
source§

fn colors(&self) -> Mat

point color of type CV_8UC3 or CV_8UC4 with only 1 row
source§

fn normals(&self) -> Mat

point normals of type CV_32FC3, CV_32FC4, CV_64FC3 or CV_64FC4 with only 1 row
source§

fn polygons(&self) -> Mat

CV_32SC1 with only 1 row
source§

fn texture(&self) -> Mat

source§

fn tcoords(&self) -> Mat

CV_32FC2 or CV_64FC2 with only 1 row
source§

impl MinProblemSolverTraitConst for BoxedRef<'_, ConjGradSolver>

source§

fn as_raw_MinProblemSolver( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_function(&self) -> Result<Ptr<MinProblemSolver_Function>>

Getter for the optimized function. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Getter for the previously set terminal criteria for this algorithm. Read more
source§

impl MinProblemSolverTraitConst for BoxedRef<'_, DownhillSolver>

source§

fn as_raw_MinProblemSolver( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_function(&self) -> Result<Ptr<MinProblemSolver_Function>>

Getter for the optimized function. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Getter for the previously set terminal criteria for this algorithm. Read more
source§

impl MinProblemSolverTraitConst for BoxedRef<'_, MinProblemSolver>

source§

fn as_raw_MinProblemSolver( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_function(&self) -> Result<Ptr<MinProblemSolver_Function>>

Getter for the optimized function. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Getter for the previously set terminal criteria for this algorithm. Read more
source§

impl MinProblemSolver_FunctionTraitConst for BoxedRef<'_, MinProblemSolver_Function>

source§

fn as_raw_MinProblemSolver_Function( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_dims(&self) -> Result<i32>

source§

fn get_gradient_eps(&self) -> Result<f64>

source§

fn calc(&self, x: &f64) -> Result<f64>

source§

impl MishLayerTraitConst for BoxedRef<'_, MishLayer>

source§

fn as_raw_MishLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ModelTraitConst for BoxedRef<'_, ClassificationModel>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, DetectionModel>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, KeypointsModel>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, Model>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, SegmentationModel>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, TextDetectionModel>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, TextDetectionModel_DB>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, TextDetectionModel_EAST>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl ModelTraitConst for BoxedRef<'_, TextRecognitionModel>

source§

fn as_raw_Model(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict( &self, frame: &impl ToInputArray, outs: &mut impl ToOutputArray ) -> Result<()>

Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
source§

fn get_network_(&self) -> Result<Net>

source§

impl MoreAccurateMotionWobbleSuppressorBaseTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressor>

source§

fn as_raw_MoreAccurateMotionWobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn period(&self) -> Result<i32>

source§

impl MoreAccurateMotionWobbleSuppressorBaseTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressorBase>

source§

fn as_raw_MoreAccurateMotionWobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn period(&self) -> Result<i32>

source§

impl MoreAccurateMotionWobbleSuppressorBaseTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressorGpu>

source§

fn as_raw_MoreAccurateMotionWobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn period(&self) -> Result<i32>

source§

impl MoreAccurateMotionWobbleSuppressorGpuTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressorGpu>

source§

fn as_raw_MoreAccurateMotionWobbleSuppressorGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MoreAccurateMotionWobbleSuppressorTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressor>

source§

fn as_raw_MoreAccurateMotionWobbleSuppressor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MotionEstimatorBaseTraitConst for BoxedRef<'_, MotionEstimatorBase>

source§

fn as_raw_MotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

Returns Read more
source§

impl MotionEstimatorBaseTraitConst for BoxedRef<'_, MotionEstimatorL1>

source§

fn as_raw_MotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

Returns Read more
source§

impl MotionEstimatorBaseTraitConst for BoxedRef<'_, MotionEstimatorRansacL2>

source§

fn as_raw_MotionEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

Returns Read more
source§

impl MotionEstimatorL1TraitConst for BoxedRef<'_, MotionEstimatorL1>

source§

fn as_raw_MotionEstimatorL1( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MotionEstimatorRansacL2TraitConst for BoxedRef<'_, MotionEstimatorRansacL2>

source§

fn as_raw_MotionEstimatorRansacL2( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ransac_params(&self) -> Result<RansacParams>

source§

fn min_inlier_ratio(&self) -> Result<f32>

source§

impl MotionFilterBaseTraitConst for BoxedRef<'_, GaussianMotionFilter>

source§

fn as_raw_MotionFilterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MotionFilterBaseTraitConst for BoxedRef<'_, MotionFilterBase>

source§

fn as_raw_MotionFilterBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MotionInpainterTraitConst for BoxedRef<'_, MotionInpainter>

source§

fn as_raw_MotionInpainter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn opt_flow_estimator(&self) -> Result<Ptr<IDenseOptFlowEstimator>>

source§

fn flow_error_threshold(&self) -> Result<f32>

source§

fn dist_thresh(&self) -> Result<f32>

source§

fn border_mode(&self) -> Result<i32>

source§

impl MotionSaliencyBinWangApr2014TraitConst for BoxedRef<'_, MotionSaliencyBinWangApr2014>

source§

fn as_raw_MotionSaliencyBinWangApr2014( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_image_width(&self) -> Result<i32>

source§

fn get_image_height(&self) -> Result<i32>

source§

impl MotionSaliencyTraitConst for BoxedRef<'_, MotionSaliency>

source§

fn as_raw_MotionSaliency( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MotionSaliencyTraitConst for BoxedRef<'_, MotionSaliencyBinWangApr2014>

source§

fn as_raw_MotionSaliency( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MotionStabilizationPipelineTraitConst for BoxedRef<'_, MotionStabilizationPipeline>

source§

fn as_raw_MotionStabilizationPipeline( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

source§

impl MouseEventTraitConst for BoxedRef<'_, MouseEvent>

source§

fn as_raw_MouseEvent(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn typ(&self) -> MouseEvent_Type

source§

fn button(&self) -> MouseEvent_MouseButton

source§

fn pointer(&self) -> Point

source§

fn modifiers(&self) -> i32

source§

impl MultiCameraCalibrationTraitConst for BoxedRef<'_, MultiCameraCalibration>

source§

fn as_raw_MultiCameraCalibration( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl MultiCameraCalibration_edgeTraitConst for BoxedRef<'_, MultiCameraCalibration_edge>

source§

fn as_raw_MultiCameraCalibration_edge( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn camera_vertex(&self) -> i32

source§

fn photo_vertex(&self) -> i32

source§

fn photo_index(&self) -> i32

source§

fn transform(&self) -> Mat

source§

impl MultiCameraCalibration_vertexTraitConst for BoxedRef<'_, MultiCameraCalibration_vertex>

source§

fn as_raw_MultiCameraCalibration_vertex( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pose(&self) -> Mat

source§

fn timestamp(&self) -> i32

source§

impl NaryEltwiseLayerTraitConst for BoxedRef<'_, NaryEltwiseLayer>

source§

fn as_raw_NaryEltwiseLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NetTraitConst for BoxedRef<'_, Net>

source§

fn as_raw_Net(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

Returns true if there are no layers in the network.
source§

fn get_layer_id(&self, layer: &str) -> Result<i32>

Converts string name of the layer to the integer identifier. Read more
source§

fn get_layer_names(&self) -> Result<Vector<String>>

source§

fn get_layer(&self, layer_id: i32) -> Result<Ptr<Layer>>

Returns pointer to layer with specified id or name which the network use.
source§

fn get_layer_1(&self, layer_name: &str) -> Result<Ptr<Layer>>

👎Deprecated: Use int getLayerId(const String &layer)
Returns pointer to layer with specified id or name which the network use. Read more
source§

fn get_layer_2(&self, layer_id: &impl DictValueTraitConst) -> Result<Ptr<Layer>>

👎Deprecated: to be removed
Returns pointer to layer with specified id or name which the network use. Read more
source§

fn get_layer_inputs(&self, layer_id: i32) -> Result<Vector<Ptr<Layer>>>

Returns pointers to input layers of specific layer.
source§

fn get_input_details( &self, scales: &mut Vector<f32>, zeropoints: &mut Vector<i32> ) -> Result<()>

Returns input scale and zeropoint for a quantized Net. Read more
source§

fn get_output_details( &self, scales: &mut Vector<f32>, zeropoints: &mut Vector<i32> ) -> Result<()>

Returns output scale and zeropoint for a quantized Net. Read more
source§

fn get_param(&self, layer: i32, num_param: i32) -> Result<Mat>

Returns parameter blob of the layer. Read more
source§

fn get_param_def(&self, layer: i32) -> Result<Mat>

Returns parameter blob of the layer. Read more
source§

fn get_param_1(&self, layer_name: &str, num_param: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_param_def_1(&self, layer_name: &str) -> Result<Mat>

source§

fn get_unconnected_out_layers(&self) -> Result<Vector<i32>>

Returns indexes of layers with unconnected outputs. Read more
source§

fn get_unconnected_out_layers_names(&self) -> Result<Vector<String>>

Returns names of layers with unconnected outputs. Read more
source§

fn get_layers_shapes( &self, net_input_shapes: &Vector<MatShape>, layers_ids: &mut Vector<i32>, in_layers_shapes: &mut Vector<Vector<MatShape>>, out_layers_shapes: &mut Vector<Vector<MatShape>> ) -> Result<()>

Returns input and output shapes for all layers in loaded model; preliminary inferencing isn’t necessary. Read more
source§

fn get_layers_shapes_1( &self, net_input_shape: &MatShape, layers_ids: &mut Vector<i32>, in_layers_shapes: &mut Vector<Vector<MatShape>>, out_layers_shapes: &mut Vector<Vector<MatShape>> ) -> Result<()>

Returns input and output shapes for all layers in loaded model; preliminary inferencing isn’t necessary. Read more
source§

fn get_layer_shapes( &self, net_input_shape: &MatShape, layer_id: i32, in_layer_shapes: &mut Vector<MatShape>, out_layer_shapes: &mut Vector<MatShape> ) -> Result<()>

Returns input and output shapes for layer with specified id in loaded model; preliminary inferencing isn’t necessary. Read more
source§

fn get_layer_shapes_1( &self, net_input_shapes: &Vector<MatShape>, layer_id: i32, in_layer_shapes: &mut Vector<MatShape>, out_layer_shapes: &mut Vector<MatShape> ) -> Result<()>

Returns input and output shapes for layer with specified id in loaded model; preliminary inferencing isn’t necessary. Read more
source§

fn get_flops(&self, net_input_shapes: &Vector<MatShape>) -> Result<i64>

Computes FLOP for whole loaded model with specified input shapes. Read more
source§

fn get_flops_1(&self, net_input_shape: &MatShape) -> Result<i64>

Computes FLOP for whole loaded model with specified input shapes. Read more
source§

fn get_flops_2( &self, layer_id: i32, net_input_shapes: &Vector<MatShape> ) -> Result<i64>

Computes FLOP for whole loaded model with specified input shapes. Read more
source§

fn get_flops_3(&self, layer_id: i32, net_input_shape: &MatShape) -> Result<i64>

Computes FLOP for whole loaded model with specified input shapes. Read more
source§

fn get_layer_types(&self, layers_types: &mut Vector<String>) -> Result<()>

Returns list of types for layer used in model. Read more
source§

fn get_layers_count(&self, layer_type: &str) -> Result<i32>

Returns count of layers of specified type. Read more
source§

fn get_memory_consumption( &self, net_input_shapes: &Vector<MatShape>, weights: &mut size_t, blobs: &mut size_t ) -> Result<()>

Computes bytes number which are required to store all weights and intermediate blobs for model. Read more
source§

fn get_memory_consumption_1( &self, net_input_shape: &MatShape, weights: &mut size_t, blobs: &mut size_t ) -> Result<()>

Computes bytes number which are required to store all weights and intermediate blobs for model. Read more
source§

fn get_memory_consumption_for_layer( &self, layer_id: i32, net_input_shapes: &Vector<MatShape>, weights: &mut size_t, blobs: &mut size_t ) -> Result<()>

Computes bytes number which are required to store all weights and intermediate blobs for model. Read more
source§

fn get_memory_consumption_2( &self, layer_id: i32, net_input_shape: &MatShape, weights: &mut size_t, blobs: &mut size_t ) -> Result<()>

Computes bytes number which are required to store all weights and intermediate blobs for model. Read more
source§

fn get_memory_consumption_for_layers( &self, net_input_shapes: &Vector<MatShape>, layer_ids: &mut Vector<i32>, weights: &mut Vector<size_t>, blobs: &mut Vector<size_t> ) -> Result<()>

Computes bytes number which are required to store all weights and intermediate blobs for each layer. Read more
source§

fn get_memory_consumption_3( &self, net_input_shape: &MatShape, layer_ids: &mut Vector<i32>, weights: &mut Vector<size_t>, blobs: &mut Vector<size_t> ) -> Result<()>

Computes bytes number which are required to store all weights and intermediate blobs for each layer. Read more
source§

impl NodeDataTraitConst for BoxedRef<'_, NodeData>

source§

fn as_raw_NodeData(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn m_fun_name(&self) -> String

source§

fn m_instr_type(&self) -> TYPE

source§

fn m_impl_type(&self) -> IMPL

source§

fn m_file_name(&self) -> String

source§

fn m_line_num(&self) -> i32

source§

fn m_always_expand(&self) -> bool

source§

fn m_fun_error(&self) -> bool

source§

fn m_counter(&self) -> i32

source§

fn m_ticks_total(&self) -> u64

source§

fn m_threads(&self) -> i32

source§

fn get_total_ms(&self) -> Result<f64>

source§

fn get_mean_ms(&self) -> Result<f64>

source§

impl NormHistogramCostExtractorTraitConst for BoxedRef<'_, NormHistogramCostExtractor>

source§

fn as_raw_NormHistogramCostExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_norm_flag(&self) -> Result<i32>

source§

impl NormalBayesClassifierTraitConst for BoxedRef<'_, NormalBayesClassifier>

source§

fn as_raw_NormalBayesClassifier( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn predict_prob( &self, inputs: &impl ToInputArray, outputs: &mut impl ToOutputArray, output_probs: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts the response for sample(s). Read more
source§

fn predict_prob_def( &self, inputs: &impl ToInputArray, outputs: &mut impl ToOutputArray, output_probs: &mut impl ToOutputArray ) -> Result<f32>

Predicts the response for sample(s). Read more
source§

impl NormalizeBBoxLayerTraitConst for BoxedRef<'_, NormalizeBBoxLayer>

source§

fn as_raw_NormalizeBBoxLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pnorm(&self) -> f32

source§

fn epsilon(&self) -> f32

source§

fn across_spatial(&self) -> bool

source§

impl NotLayerTraitConst for BoxedRef<'_, NotLayer>

source§

fn as_raw_NotLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NullDeblurerTraitConst for BoxedRef<'_, NullDeblurer>

source§

fn as_raw_NullDeblurer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NullFrameSourceTraitConst for BoxedRef<'_, NullFrameSource>

source§

fn as_raw_NullFrameSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NullInpainterTraitConst for BoxedRef<'_, NullInpainter>

source§

fn as_raw_NullInpainter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NullLogTraitConst for BoxedRef<'_, NullLog>

source§

fn as_raw_NullLog(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NullOutlierRejectorTraitConst for BoxedRef<'_, NullOutlierRejector>

source§

fn as_raw_NullOutlierRejector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl NullWobbleSuppressorTraitConst for BoxedRef<'_, NullWobbleSuppressor>

source§

fn as_raw_NullWobbleSuppressor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OCRBeamSearchDecoderTraitConst for BoxedRef<'_, OCRBeamSearchDecoder>

source§

fn as_raw_OCRBeamSearchDecoder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OCRBeamSearchDecoder_ClassifierCallbackTraitConst for BoxedRef<'_, OCRBeamSearchDecoder_ClassifierCallback>

source§

fn as_raw_OCRBeamSearchDecoder_ClassifierCallback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OCRHMMDecoderTraitConst for BoxedRef<'_, OCRHMMDecoder>

source§

fn as_raw_OCRHMMDecoder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OCRHMMDecoder_ClassifierCallbackTraitConst for BoxedRef<'_, OCRHMMDecoder_ClassifierCallback>

source§

fn as_raw_OCRHMMDecoder_ClassifierCallback( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OCRHolisticWordRecognizerTraitConst for BoxedRef<'_, OCRHolisticWordRecognizer>

source§

fn as_raw_OCRHolisticWordRecognizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OCRTesseractTraitConst for BoxedRef<'_, OCRTesseract>

source§

fn as_raw_OCRTesseract(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ORBTraitConst for BoxedRef<'_, ORB>

source§

impl ObjectnessBINGTraitConst for BoxedRef<'_, ObjectnessBING>

source§

fn as_raw_ObjectnessBING( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self) -> Result<()>

source§

fn get_base(&self) -> Result<f64>

source§

fn get_nss(&self) -> Result<i32>

source§

fn get_w(&self) -> Result<i32>

source§

impl ObjectnessTraitConst for BoxedRef<'_, Objectness>

source§

fn as_raw_Objectness(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ObjectnessTraitConst for BoxedRef<'_, ObjectnessBING>

source§

fn as_raw_Objectness(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OdometryFrameTraitConst for BoxedRef<'_, OdometryFrame>

source§

impl OdometryTraitConst for BoxedRef<'_, FastICPOdometry>

source§

fn as_raw_Odometry(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute_def( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute2( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn compute2_def( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn prepare_frame_cache( &self, frame: &mut Ptr<OdometryFrame>, cache_type: i32 ) -> Result<Size>

Prepare a cache for the frame. The function checks the precomputed/passed data (throws the error if this data does not satisfy) and computes all remaining cache data needed for the frame. Returned size is a resolution of the prepared frame. Read more
source§

fn get_camera_matrix(&self) -> Result<Mat>

See also Read more
source§

fn get_transform_type(&self) -> Result<i32>

See also Read more
source§

impl OdometryTraitConst for BoxedRef<'_, ICPOdometry>

source§

fn as_raw_Odometry(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute_def( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute2( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn compute2_def( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn prepare_frame_cache( &self, frame: &mut Ptr<OdometryFrame>, cache_type: i32 ) -> Result<Size>

Prepare a cache for the frame. The function checks the precomputed/passed data (throws the error if this data does not satisfy) and computes all remaining cache data needed for the frame. Returned size is a resolution of the prepared frame. Read more
source§

fn get_camera_matrix(&self) -> Result<Mat>

See also Read more
source§

fn get_transform_type(&self) -> Result<i32>

See also Read more
source§

impl OdometryTraitConst for BoxedRef<'_, Odometry>

source§

fn as_raw_Odometry(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute_def( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute2( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn compute2_def( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn prepare_frame_cache( &self, frame: &mut Ptr<OdometryFrame>, cache_type: i32 ) -> Result<Size>

Prepare a cache for the frame. The function checks the precomputed/passed data (throws the error if this data does not satisfy) and computes all remaining cache data needed for the frame. Returned size is a resolution of the prepared frame. Read more
source§

fn get_camera_matrix(&self) -> Result<Mat>

See also Read more
source§

fn get_transform_type(&self) -> Result<i32>

See also Read more
source§

impl OdometryTraitConst for BoxedRef<'_, RgbdICPOdometry>

source§

fn as_raw_Odometry(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute_def( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute2( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn compute2_def( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn prepare_frame_cache( &self, frame: &mut Ptr<OdometryFrame>, cache_type: i32 ) -> Result<Size>

Prepare a cache for the frame. The function checks the precomputed/passed data (throws the error if this data does not satisfy) and computes all remaining cache data needed for the frame. Returned size is a resolution of the prepared frame. Read more
source§

fn get_camera_matrix(&self) -> Result<Mat>

See also Read more
source§

fn get_transform_type(&self) -> Result<i32>

See also Read more
source§

impl OdometryTraitConst for BoxedRef<'_, RgbdOdometry>

source§

fn as_raw_Odometry(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute_def( &self, src_image: &impl MatTraitConst, src_depth: &impl MatTraitConst, src_mask: &impl MatTraitConst, dst_image: &impl MatTraitConst, dst_depth: &impl MatTraitConst, dst_mask: &impl MatTraitConst, rt: &mut impl ToOutputArray ) -> Result<bool>

Method to compute a transformation from the source frame to the destination one. Some odometry algorithms do not used some data of frames (eg. ICP does not use images). In such case corresponding arguments can be set as empty Mat. The method returns true if all internal computations were possible (e.g. there were enough correspondences, system of equations has a solution, etc) and resulting transformation satisfies some test if it’s provided by the Odometry inheritor implementation (e.g. thresholds for maximum translation and rotation). Read more
source§

fn compute2( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray, init_rt: &impl MatTraitConst ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn compute2_def( &self, src_frame: &mut Ptr<OdometryFrame>, dst_frame: &mut Ptr<OdometryFrame>, rt: &mut impl ToOutputArray ) -> Result<bool>

One more method to compute a transformation from the source frame to the destination one. It is designed to save on computing the frame data (image pyramids, normals, etc.). Read more
source§

fn prepare_frame_cache( &self, frame: &mut Ptr<OdometryFrame>, cache_type: i32 ) -> Result<Size>

Prepare a cache for the frame. The function checks the precomputed/passed data (throws the error if this data does not satisfy) and computes all remaining cache data needed for the frame. Returned size is a resolution of the prepared frame. Read more
source§

fn get_camera_matrix(&self) -> Result<Mat>

See also Read more
source§

fn get_transform_type(&self) -> Result<i32>

See also Read more
source§

impl OnePassStabilizerTraitConst for BoxedRef<'_, OnePassStabilizer>

source§

fn as_raw_OnePassStabilizer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_filter(&self) -> Result<Ptr<MotionFilterBase>>

source§

impl OpenCLExecutionContextTraitConst for BoxedRef<'_, OpenCLExecutionContext>

source§

fn as_raw_OpenCLExecutionContext( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_context(&self) -> Result<Context>

Get associated ocl::Context
source§

fn get_device(&self) -> Result<Device>

Get the single default associated ocl::Device
source§

fn get_queue(&self) -> Result<Queue>

Get the single ocl::Queue that is associated with the ocl::Context and the single default ocl::Device
source§

fn use_opencl(&self) -> Result<bool>

source§

fn bind(&self) -> Result<()>

Bind this OpenCL execution context to current thread. Read more
source§

fn clone_with_new_queue( &self, q: &impl QueueTraitConst ) -> Result<OpenCLExecutionContext>

Creates new execution context with same OpenCV context and device Read more
source§

fn clone_with_new_queue_1(&self) -> Result<OpenCLExecutionContext>

Creates new execution context with same OpenCV context and device Read more
source§

fn empty(&self) -> Result<bool>

source§

impl OpticalFlowPCAFlowTraitConst for BoxedRef<'_, OpticalFlowPCAFlow>

source§

fn as_raw_OpticalFlowPCAFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl OriginalClassNameTraitConst for BoxedRef<'_, OriginalClassName>

source§

fn as_raw_OriginalClassName( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_int_param(&self) -> Result<i32>

source§

fn get_float_param(&self) -> Result<f32>

source§

impl PCAPriorTraitConst for BoxedRef<'_, PCAPrior>

source§

fn as_raw_PCAPrior(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_padding(&self) -> Result<i32>

source§

fn get_basis_size(&self) -> Result<i32>

source§

fn fill_constraints( &self, a1: &mut f32, a2: &mut f32, b1: &mut f32, b2: &mut f32 ) -> Result<()>

source§

impl PCATraitConst for BoxedRef<'_, PCA>

source§

fn as_raw_PCA(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn eigenvectors(&self) -> Mat

eigenvectors of the covariation matrix
source§

fn eigenvalues(&self) -> Mat

eigenvalues of the covariation matrix
source§

fn mean(&self) -> Mat

mean value subtracted before the projection and added after the back projection
source§

fn project(&self, vec: &impl ToInputArray) -> Result<Mat>

Projects vector(s) to the principal component subspace. Read more
source§

fn project_to( &self, vec: &impl ToInputArray, result: &mut impl ToOutputArray ) -> Result<()>

Projects vector(s) to the principal component subspace. Read more
source§

fn back_project(&self, vec: &impl ToInputArray) -> Result<Mat>

Reconstructs vectors from their PC projections. Read more
source§

fn back_project_to( &self, vec: &impl ToInputArray, result: &mut impl ToOutputArray ) -> Result<()>

Reconstructs vectors from their PC projections. Read more
source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

write PCA objects Read more
source§

impl PCTSignaturesSQFDTraitConst for BoxedRef<'_, PCTSignaturesSQFD>

source§

fn as_raw_PCTSignaturesSQFD( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute_quadratic_form_distance( &self, _signature0: &impl ToInputArray, _signature1: &impl ToInputArray ) -> Result<f32>

Computes Signature Quadratic Form Distance of two signatures. Read more
source§

fn compute_quadratic_form_distances( &self, source_signature: &impl MatTraitConst, image_signatures: &Vector<Mat>, distances: &mut Vector<f32> ) -> Result<()>

Computes Signature Quadratic Form Distance between the reference signature and each of the other image signatures. Read more
source§

impl PCTSignaturesTraitConst for BoxedRef<'_, PCTSignatures>

source§

fn as_raw_PCTSignatures( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn compute_signature( &self, image: &impl ToInputArray, signature: &mut impl ToOutputArray ) -> Result<()>

Computes signature of given image. Read more
source§

fn compute_signatures( &self, images: &Vector<Mat>, signatures: &mut Vector<Mat> ) -> Result<()>

Computes signatures for multiple images in parallel. Read more
source§

fn get_sample_count(&self) -> Result<i32>

Number of initial samples taken from the image.
source§

fn get_grayscale_bits(&self) -> Result<i32>

Color resolution of the greyscale bitmap represented in allocated bits (i.e., value 4 means that 16 shades of grey are used). The greyscale bitmap is used for computing contrast and entropy values.
source§

fn get_window_radius(&self) -> Result<i32>

Size of the texture sampling window used to compute contrast and entropy (center of the window is always in the pixel selected by x,y coordinates of the corresponding feature sample).
source§

fn get_weight_x(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_weight_y(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_weight_l(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_weight_a(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_weight_b(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_weight_contrast(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_weight_entropy(&self) -> Result<f32>

Weights (multiplicative constants) that linearly stretch individual axes of the feature space (x,y = position; L,a,b = color in CIE Lab space; c = contrast. e = entropy)
source§

fn get_sampling_points(&self) -> Result<Vector<Point2f>>

Initial samples taken from the image. These sampled features become the input for clustering.
source§

fn get_init_seed_indexes(&self) -> Result<Vector<i32>>

** clusterizer *** Read more
source§

fn get_init_seed_count(&self) -> Result<i32>

Number of initial seeds (initial number of clusters) for the k-means algorithm.
source§

fn get_iteration_count(&self) -> Result<i32>

Number of iterations of the k-means clustering. We use fixed number of iterations, since the modified clustering is pruning clusters (not iteratively refining k clusters).
source§

fn get_max_clusters_count(&self) -> Result<i32>

Maximal number of generated clusters. If the number is exceeded, the clusters are sorted by their weights and the smallest clusters are cropped.
source§

fn get_cluster_min_size(&self) -> Result<i32>

This parameter multiplied by the index of iteration gives lower limit for cluster size. Clusters containing fewer points than specified by the limit have their centroid dismissed and points are reassigned.
source§

fn get_joining_distance(&self) -> Result<f32>

Threshold euclidean distance between two centroids. If two cluster centers are closer than this distance, one of the centroid is dismissed and points are reassigned.
source§

fn get_drop_threshold(&self) -> Result<f32>

Remove centroids in k-means whose weight is lesser or equal to given threshold.
source§

fn get_distance_function(&self) -> Result<i32>

Distance function selector used for measuring distance between two points in k-means.
source§

impl PHashTraitConst for BoxedRef<'_, PHash>

source§

fn as_raw_PHash(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PPF3DDetectorTraitConst for BoxedRef<'_, PPF3DDetector>

source§

fn as_raw_PPF3DDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PaddingLayerTraitConst for BoxedRef<'_, PaddingLayer>

source§

fn as_raw_PaddingLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PaniniPortraitWarperTraitConst for BoxedRef<'_, PaniniPortraitWarper>

source§

fn as_raw_PaniniPortraitWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl PaniniWarperTraitConst for BoxedRef<'_, PaniniWarper>

source§

fn as_raw_PaniniWarper(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl ParallelLoopBodyTraitConst for BoxedRef<'_, ParallelLoopBody>

source§

fn as_raw_ParallelLoopBody( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn apply(&self, range: &impl RangeTraitConst) -> Result<()>

source§

impl ParamGridTraitConst for BoxedRef<'_, ParamGrid>

source§

fn as_raw_ParamGrid(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn min_val(&self) -> f64

Minimum value of the statmodel parameter. Default value is 0.
source§

fn max_val(&self) -> f64

Maximum value of the statmodel parameter. Default value is 0.
source§

fn log_step(&self) -> f64

Logarithmic step for iterating the statmodel parameter. Read more
source§

impl ParamsTraitConst for BoxedRef<'_, Params>

source§

fn as_raw_Params(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn frame_size(&self) -> Size

frame size in pixels
source§

fn intr(&self) -> Matx33f

camera intrinsics
source§

fn rgb_intr(&self) -> Matx33f

rgb camera intrinsics
source§

fn depth_factor(&self) -> f32

pre-scale per 1 meter for input values Typical values are: * 5000 per 1 meter for the 16-bit PNG files of TUM database * 1000 per 1 meter for Kinect 2 device * 1 per 1 meter for the 32-bit float images in the ROS bag files
source§

fn bilateral_sigma_depth(&self) -> f32

Depth sigma in meters for bilateral smooth
source§

fn bilateral_sigma_spatial(&self) -> f32

Spatial sigma in pixels for bilateral smooth
source§

fn bilateral_kernel_size(&self) -> i32

Kernel size in pixels for bilateral smooth
source§

fn pyramid_levels(&self) -> i32

Number of pyramid levels for ICP
source§

fn tsdf_min_camera_movement(&self) -> f32

Minimal camera movement in meters Integrate new depth frame only if camera movement exceeds this value.
source§

fn light_pose(&self) -> Vec3f

light pose for rendering in meters
source§

fn icp_dist_thresh(&self) -> f32

distance theshold for ICP in meters
source§

fn icp_angle_thresh(&self) -> f32

angle threshold for ICP in radians
source§

fn icp_iterations(&self) -> Vector<i32>

number of ICP iterations for each pyramid level
source§

fn truncate_threshold(&self) -> f32

Threshold for depth truncation in meters All depth values beyond this threshold will be set to zero
source§

fn volume_params(&self) -> Kinfu_VolumeParams

Volume parameters
source§

impl PermuteLayerTraitConst for BoxedRef<'_, PermuteLayer>

source§

fn as_raw_PermuteLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PhaseUnwrappingTraitConst for BoxedRef<'_, HistogramPhaseUnwrapping>

source§

fn as_raw_PhaseUnwrapping( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PhaseUnwrappingTraitConst for BoxedRef<'_, PhaseUnwrapping>

source§

fn as_raw_PhaseUnwrapping( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PlaneWarperGpuTraitConst for BoxedRef<'_, PlaneWarperGpu>

source§

fn as_raw_PlaneWarperGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl PlaneWarperTraitConst for BoxedRef<'_, PlaneWarper>

source§

fn as_raw_PlaneWarper(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl PlatformInfoTraitConst for BoxedRef<'_, PlatformInfo>

source§

fn as_raw_PlatformInfo(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn name(&self) -> Result<String>

source§

fn vendor(&self) -> Result<String>

source§

fn version(&self) -> Result<String>

See CL_PLATFORM_VERSION
source§

fn version_major(&self) -> Result<i32>

source§

fn version_minor(&self) -> Result<i32>

source§

fn device_number(&self) -> Result<i32>

source§

fn get_device(&self, device: &mut impl DeviceTrait, d: i32) -> Result<()>

source§

fn empty(&self) -> Result<bool>

source§

impl PlatformTraitConst for BoxedRef<'_, Platform>

source§

fn as_raw_Platform(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ptr(&self) -> Result<*mut c_void>

source§

fn empty(&self) -> Result<bool>

source§

impl Plot2dTraitConst for BoxedRef<'_, Plot2d>

source§

fn as_raw_Plot2d(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PolyTraitConst for BoxedRef<'_, Poly>

source§

fn as_raw_Poly(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn points(&self) -> Vector<Point>

Points to connect
source§

fn color(&self) -> Scalar

The line color
source§

fn thick(&self) -> i32

The thickness of line
source§

fn lt(&self) -> i32

The Type of the line. See #LineTypes
source§

fn shift(&self) -> i32

The number of fractional bits in the point coordinate
source§

impl PoolingLayerInt8TraitConst for BoxedRef<'_, PoolingLayerInt8>

source§

fn as_raw_PoolingLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn input_zp(&self) -> i32

source§

fn output_zp(&self) -> i32

source§

fn input_sc(&self) -> f32

source§

fn output_sc(&self) -> f32

source§

impl PoolingLayerTraitConst for BoxedRef<'_, PoolingLayer>

source§

fn as_raw_PoolingLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn typ(&self) -> i32

source§

fn kernel_size(&self) -> Vector<size_t>

source§

fn strides(&self) -> Vector<size_t>

source§

fn pads_begin(&self) -> Vector<size_t>

source§

fn pads_end(&self) -> Vector<size_t>

source§

fn global_pooling(&self) -> bool

Flag is true if at least one of the axes is global pooled.
source§

fn is_global_pooling(&self) -> Vector<bool>

source§

fn compute_max_idx(&self) -> bool

source§

fn pad_mode(&self) -> String

source§

fn ceil_mode(&self) -> bool

source§

fn ave_pool_padded_area(&self) -> bool

source§

fn pooled_size(&self) -> Size

source§

fn spatial_scale(&self) -> f32

source§

fn ps_roi_out_channels(&self) -> i32

source§

impl PoolingLayerTraitConst for BoxedRef<'_, PoolingLayerInt8>

source§

fn as_raw_PoolingLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn typ(&self) -> i32

source§

fn kernel_size(&self) -> Vector<size_t>

source§

fn strides(&self) -> Vector<size_t>

source§

fn pads_begin(&self) -> Vector<size_t>

source§

fn pads_end(&self) -> Vector<size_t>

source§

fn global_pooling(&self) -> bool

Flag is true if at least one of the axes is global pooled.
source§

fn is_global_pooling(&self) -> Vector<bool>

source§

fn compute_max_idx(&self) -> bool

source§

fn pad_mode(&self) -> String

source§

fn ceil_mode(&self) -> bool

source§

fn ave_pool_padded_area(&self) -> bool

source§

fn pooled_size(&self) -> Size

source§

fn spatial_scale(&self) -> f32

source§

fn ps_roi_out_channels(&self) -> i32

source§

impl Pose3DTraitConst for BoxedRef<'_, Pose3D>

source§

fn as_raw_Pose3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn alpha(&self) -> f64

source§

fn residual(&self) -> f64

source§

fn model_index(&self) -> size_t

source§

fn num_votes(&self) -> size_t

source§

fn pose(&self) -> Matx44d

source§

fn angle(&self) -> f64

source§

fn t(&self) -> Vec3d

source§

fn q(&self) -> Vec4d

source§

impl PoseCluster3DTraitConst for BoxedRef<'_, PoseCluster3D>

source§

fn as_raw_PoseCluster3D( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pose_list(&self) -> Vector<Pose3DPtr>

source§

fn num_votes(&self) -> size_t

source§

fn id(&self) -> i32

source§

impl PowerLayerTraitConst for BoxedRef<'_, PowerLayer>

source§

fn as_raw_PowerLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn power(&self) -> f32

source§

fn scale(&self) -> f32

source§

fn shift(&self) -> f32

source§

impl PredictCollectorTraitConst for BoxedRef<'_, PredictCollector>

source§

fn as_raw_PredictCollector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PredictCollectorTraitConst for BoxedRef<'_, StandardCollector>

source§

fn as_raw_PredictCollector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PriorBoxLayerTraitConst for BoxedRef<'_, PriorBoxLayer>

source§

fn as_raw_PriorBoxLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ProgramSourceTraitConst for BoxedRef<'_, ProgramSource>

source§

fn as_raw_ProgramSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn source(&self) -> Result<String>

source§

fn hash(&self) -> Result<ProgramSource_hash_t>

source§

fn empty(&self) -> Result<bool>

source§

impl ProgramTraitConst for BoxedRef<'_, Program>

source§

fn as_raw_Program(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ptr(&self) -> Result<*mut c_void>

source§

fn get_binary(&self, binary: &mut Vector<c_char>) -> Result<()>

Query device-specific program binary. Read more
source§

fn empty(&self) -> Result<bool>

source§

fn write(&self, buf: &mut String) -> Result<bool>

source§

fn source(&self) -> Result<ProgramSource>

source§

fn get_prefix(&self) -> Result<String>

source§

impl ProposalLayerTraitConst for BoxedRef<'_, ProposalLayer>

source§

fn as_raw_ProposalLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl PyRotationWarperTraitConst for BoxedRef<'_, PyRotationWarper>

source§

fn as_raw_PyRotationWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

impl PyrLkOptFlowEstimatorBaseTraitConst for BoxedRef<'_, DensePyrLkOptFlowEstimatorGpu>

source§

fn as_raw_PyrLkOptFlowEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn win_size(&self) -> Result<Size>

source§

fn max_level(&self) -> Result<i32>

source§

impl PyrLkOptFlowEstimatorBaseTraitConst for BoxedRef<'_, PyrLkOptFlowEstimatorBase>

source§

fn as_raw_PyrLkOptFlowEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn win_size(&self) -> Result<Size>

source§

fn max_level(&self) -> Result<i32>

source§

impl PyrLkOptFlowEstimatorBaseTraitConst for BoxedRef<'_, SparsePyrLkOptFlowEstimator>

source§

fn as_raw_PyrLkOptFlowEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn win_size(&self) -> Result<Size>

source§

fn max_level(&self) -> Result<i32>

source§

impl PyrLkOptFlowEstimatorBaseTraitConst for BoxedRef<'_, SparsePyrLkOptFlowEstimatorGpu>

source§

fn as_raw_PyrLkOptFlowEstimatorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn win_size(&self) -> Result<Size>

source§

fn max_level(&self) -> Result<i32>

source§

impl QRCodeDetectorArucoTraitConst for BoxedRef<'_, QRCodeDetectorAruco>

source§

fn as_raw_QRCodeDetectorAruco( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_detector_parameters(&self) -> Result<QRCodeDetectorAruco_Params>

Detector parameters getter. See cv::QRCodeDetectorAruco::Params
source§

impl QRCodeDetectorTraitConst for BoxedRef<'_, QRCodeDetector>

source§

fn as_raw_QRCodeDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl QRCodeEncoderTraitConst for BoxedRef<'_, QRCodeEncoder>

source§

fn as_raw_QRCodeEncoder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl QtFontTraitConst for BoxedRef<'_, QtFont>

source§

fn as_raw_QtFont(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn name_font(&self) -> String

Name of the font
source§

fn color(&self) -> Scalar

Color of the font. Scalar(blue_component, green_component, red_component[, alpha_component])
source§

fn font_face(&self) -> i32

See cv::QtFontStyles
source§

fn ascii(&self) -> *const i32

font data and metrics
source§

fn greek(&self) -> *const i32

source§

fn cyrillic(&self) -> *const i32

source§

fn hscale(&self) -> f32

source§

fn vscale(&self) -> f32

source§

fn shear(&self) -> f32

slope coefficient: 0 - normal, >0 - italic
source§

fn thickness(&self) -> i32

See cv::QtFontWeights
source§

fn dx(&self) -> f32

horizontal interval between letters
source§

fn line_type(&self) -> i32

PointSize
source§

impl QualityBRISQUETraitConst for BoxedRef<'_, QualityBRISQUE>

source§

fn as_raw_QualityBRISQUE( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl QualityBaseTraitConst for BoxedRef<'_, QualityBRISQUE>

source§

fn as_raw_QualityBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_quality_map(&self, dst: &mut impl ToOutputArray) -> Result<()>

Returns output quality map that was generated during computation, if supported by the algorithm
source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityBaseTraitConst for BoxedRef<'_, QualityBase>

source§

fn as_raw_QualityBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_quality_map(&self, dst: &mut impl ToOutputArray) -> Result<()>

Returns output quality map that was generated during computation, if supported by the algorithm
source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityBaseTraitConst for BoxedRef<'_, QualityGMSD>

source§

fn as_raw_QualityBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_quality_map(&self, dst: &mut impl ToOutputArray) -> Result<()>

Returns output quality map that was generated during computation, if supported by the algorithm
source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityBaseTraitConst for BoxedRef<'_, QualityMSE>

source§

fn as_raw_QualityBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_quality_map(&self, dst: &mut impl ToOutputArray) -> Result<()>

Returns output quality map that was generated during computation, if supported by the algorithm
source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityBaseTraitConst for BoxedRef<'_, QualityPSNR>

source§

fn as_raw_QualityBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_quality_map(&self, dst: &mut impl ToOutputArray) -> Result<()>

Returns output quality map that was generated during computation, if supported by the algorithm
source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityBaseTraitConst for BoxedRef<'_, QualitySSIM>

source§

fn as_raw_QualityBase(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_quality_map(&self, dst: &mut impl ToOutputArray) -> Result<()>

Returns output quality map that was generated during computation, if supported by the algorithm
source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityGMSDTraitConst for BoxedRef<'_, QualityGMSD>

source§

fn as_raw_QualityGMSD(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityMSETraitConst for BoxedRef<'_, QualityMSE>

source§

fn as_raw_QualityMSE(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QualityPSNRTraitConst for BoxedRef<'_, QualityPSNR>

source§

fn as_raw_QualityPSNR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

fn get_max_pixel_value(&self) -> Result<f64>

return the maximum pixel value used for PSNR computation
source§

impl QualitySSIMTraitConst for BoxedRef<'_, QualitySSIM>

source§

fn as_raw_QualitySSIM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn empty(&self) -> Result<bool>

Implements Algorithm::empty()
source§

impl QuantizeLayerTraitConst for BoxedRef<'_, QuantizeLayer>

source§

fn as_raw_QuantizeLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scales(&self) -> Vector<f32>

source§

fn zeropoints(&self) -> Vector<i32>

source§

impl QuasiDenseStereoTraitConst for BoxedRef<'_, QuasiDenseStereo>

source§

fn as_raw_QuasiDenseStereo( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn param(&self) -> PropagationParameters

source§

impl QueueTraitConst for BoxedRef<'_, Queue>

source§

fn as_raw_Queue(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn ptr(&self) -> Result<*mut c_void>

source§

fn get_profiling_queue(&self) -> Result<Queue>

Returns OpenCL command queue with enable profiling mode support
source§

fn empty(&self) -> Result<bool>

source§

impl RFFeatureGetterTraitConst for BoxedRef<'_, RFFeatureGetter>

source§

fn as_raw_RFFeatureGetter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_features( &self, src: &impl MatTraitConst, features: &mut impl MatTrait, gnrm_rad: i32, gsmth_rad: i32, shrink: i32, out_num: i32, grad_num: i32 ) -> Result<()>

source§

impl RICInterpolatorTraitConst for BoxedRef<'_, RICInterpolator>

source§

fn as_raw_RICInterpolator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_k(&self) -> Result<i32>

K is a number of nearest-neighbor matches considered, when fitting a locally affine model for a superpixel segment. However, lower values would make the interpolation noticeably faster. The original implementation of Hu2017 uses 32. Read more
source§

fn get_superpixel_size(&self) -> Result<i32>

Get the internal cost, i.e. edge map, used for estimating the edge-aware term. Read more
source§

fn get_superpixel_nn_cnt(&self) -> Result<i32>

Parameter defines the number of nearest-neighbor matches for each superpixel considered, when fitting a locally affine model. Read more
source§

fn get_superpixel_ruler(&self) -> Result<f32>

Parameter to tune enforcement of superpixel smoothness factor used for oversegmentation. Read more
source§

fn get_superpixel_mode(&self) -> Result<i32>

Parameter to choose superpixel algorithm variant to use: Read more
source§

fn get_alpha(&self) -> Result<f32>

Alpha is a parameter defining a global weight for transforming geodesic distance into weight. Read more
source§

fn get_model_iter(&self) -> Result<i32>

Parameter defining the number of iterations for piece-wise affine model estimation. Read more
source§

fn get_refine_models(&self) -> Result<bool>

Parameter to choose wether additional refinement of the piece-wise affine models is employed. Read more
source§

fn get_max_flow(&self) -> Result<f32>

MaxFlow is a threshold to validate the predictions using a certain piece-wise affine model. If the prediction exceeds the treshold the translational model will be applied instead. Read more
source§

fn get_use_variational_refinement(&self) -> Result<bool>

Parameter to choose wether the VariationalRefinement post-processing is employed. Read more
source§

fn get_use_global_smoother_filter(&self) -> Result<bool>

Sets whether the fastGlobalSmootherFilter() post-processing is employed. Read more
source§

fn get_fgs_lambda(&self) -> Result<f32>

Sets the respective fastGlobalSmootherFilter() parameter. Read more
source§

fn get_fgs_sigma(&self) -> Result<f32>

Sets the respective fastGlobalSmootherFilter() parameter. Read more
source§

impl RLOFOpticalFlowParameterTraitConst for BoxedRef<'_, RLOFOpticalFlowParameter>

source§

impl RMatTraitConst for BoxedRef<'_, RMat>

source§

fn as_raw_RMat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn desc(&self) -> Result<GMatDesc>

source§

impl RMat_IAdapterTraitConst for BoxedRef<'_, RMat_IAdapter>

source§

fn as_raw_RMat_IAdapter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn desc(&self) -> Result<GMatDesc>

source§

impl RMat_ViewTraitConst for BoxedRef<'_, RMat_View>

source§

fn as_raw_RMat_View(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn size(&self) -> Result<Size>

source§

fn dims(&self) -> Result<Vector<i32>>

source§

fn cols(&self) -> Result<i32>

source§

fn rows(&self) -> Result<i32>

source§

fn typ(&self) -> Result<i32>

source§

fn depth(&self) -> Result<i32>

source§

fn chan(&self) -> Result<i32>

source§

fn elem_size(&self) -> Result<size_t>

source§

fn step(&self, i: size_t) -> Result<size_t>

C++ default parameters Read more
source§

fn step_def(&self) -> Result<size_t>

source§

fn steps(&self) -> Result<RMat_View_stepsT>

source§

impl RNGTraitConst for BoxedRef<'_, RNG>

source§

fn as_raw_RNG(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn state(&self) -> u64

source§

fn equals(&self, other: &impl RNGTraitConst) -> Result<bool>

source§

impl RNG_MT19937TraitConst for BoxedRef<'_, RNG_MT19937>

source§

fn as_raw_RNG_MT19937(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RNNLayerTraitConst for BoxedRef<'_, RNNLayer>

source§

fn as_raw_RNNLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RTreesTraitConst for BoxedRef<'_, RTrees>

source§

fn as_raw_RTrees(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_calculate_var_importance(&self) -> Result<bool>

If true then variable importance will be calculated and then it can be retrieved by RTrees::getVarImportance. Default value is false. Read more
source§

fn get_active_var_count(&self) -> Result<i32>

The size of the randomly selected subset of features at each tree node and that are used to find the best split(s). If you set it to 0 then the size will be set to the square root of the total number of features. Default value is 0. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

The termination criteria that specifies when the training algorithm stops. Either when the specified number of trees is trained and added to the ensemble or when sufficient accuracy (measured as OOB error) is achieved. Typically the more trees you have the better the accuracy. However, the improvement in accuracy generally diminishes and asymptotes pass a certain number of trees. Also to keep in mind, the number of tree increases the prediction time linearly. Default value is TermCriteria(TermCriteria::MAX_ITERS + TermCriteria::EPS, 50, 0.1) Read more
source§

fn get_var_importance(&self) -> Result<Mat>

Returns the variable importance array. The method returns the variable importance vector, computed at the training stage when CalculateVarImportance is set to true. If this flag was set to false, the empty matrix is returned.
source§

fn get_votes( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<()>

Returns the result of each individual tree in the forest. In case the model is a regression problem, the method will return each of the trees’ results for each of the sample cases. If the model is a classifier, it will return a Mat with samples + 1 rows, where the first row gives the class number and the following rows return the votes each class had for each sample. Read more
source§

fn get_oob_error(&self) -> Result<f64>

source§

impl RadialVarianceHashTraitConst for BoxedRef<'_, RadialVarianceHash>

source§

fn as_raw_RadialVarianceHash( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_num_of_angle_line(&self) -> Result<i32>

source§

fn get_sigma(&self) -> Result<f64>

source§

impl RandomPatternCornerFinderTraitConst for BoxedRef<'_, RandomPatternCornerFinder>

source§

fn as_raw_RandomPatternCornerFinder( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RandomPatternGeneratorTraitConst for BoxedRef<'_, RandomPatternGenerator>

source§

fn as_raw_RandomPatternGenerator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RangeTraitConst for BoxedRef<'_, Range>

source§

fn as_raw_Range(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn start(&self) -> i32

source§

fn end(&self) -> i32

source§

fn size(&self) -> Result<i32>

source§

fn empty(&self) -> Result<bool>

source§

impl RangeTraitConst for BoxedRef<'_, _Range>

source§

fn as_raw_Range(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn start(&self) -> i32

source§

fn end(&self) -> i32

source§

fn size(&self) -> Result<i32>

source§

fn empty(&self) -> Result<bool>

source§

impl RansacParamsTraitConst for BoxedRef<'_, RansacParams>

source§

fn as_raw_RansacParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn size(&self) -> i32

subset size
source§

fn thresh(&self) -> f32

max error to classify as inlier
source§

fn eps(&self) -> f32

max outliers ratio
source§

fn prob(&self) -> f32

probability of success
source§

fn niters(&self) -> Result<i32>

Returns Read more
source§

impl Rapid_GOSTrackerTraitConst for BoxedRef<'_, Rapid_GOSTracker>

source§

fn as_raw_Rapid_GOSTracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Rapid_OLSTrackerTraitConst for BoxedRef<'_, Rapid_OLSTracker>

source§

fn as_raw_Rapid_OLSTracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Rapid_RapidTraitConst for BoxedRef<'_, Rapid_Rapid>

source§

fn as_raw_Rapid_Rapid(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Rapid_TrackerTraitConst for BoxedRef<'_, Rapid_GOSTracker>

source§

fn as_raw_Rapid_Tracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Rapid_TrackerTraitConst for BoxedRef<'_, Rapid_OLSTracker>

source§

fn as_raw_Rapid_Tracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Rapid_TrackerTraitConst for BoxedRef<'_, Rapid_Rapid>

source§

fn as_raw_Rapid_Tracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Rapid_TrackerTraitConst for BoxedRef<'_, Rapid_Tracker>

source§

fn as_raw_Rapid_Tracker( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ReLU6LayerTraitConst for BoxedRef<'_, ReLU6Layer>

source§

fn as_raw_ReLU6Layer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn min_value(&self) -> f32

source§

fn max_value(&self) -> f32

source§

impl ReLULayerTraitConst for BoxedRef<'_, ReLULayer>

source§

fn as_raw_ReLULayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn negative_slope(&self) -> f32

source§

impl ReciprocalLayerTraitConst for BoxedRef<'_, ReciprocalLayer>

source§

fn as_raw_ReciprocalLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ReduceLayerTraitConst for BoxedRef<'_, ReduceLayer>

source§

fn as_raw_ReduceLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RegionLayerTraitConst for BoxedRef<'_, RegionLayer>

source§

fn as_raw_RegionLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn nms_threshold(&self) -> f32

source§

impl ReorgLayerTraitConst for BoxedRef<'_, ReorgLayer>

source§

fn as_raw_ReorgLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RequantizeLayerTraitConst for BoxedRef<'_, RequantizeLayer>

source§

fn as_raw_RequantizeLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn scale(&self) -> f32

source§

fn shift(&self) -> f32

source§

impl ReshapeLayerTraitConst for BoxedRef<'_, ReshapeLayer>

source§

fn as_raw_ReshapeLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn new_shape_desc(&self) -> MatShape

source§

fn new_shape_range(&self) -> Range

source§

impl ResizeLayerTraitConst for BoxedRef<'_, ResizeLayer>

source§

fn as_raw_ResizeLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RetinaFastToneMappingTraitConst for BoxedRef<'_, RetinaFastToneMapping>

source§

fn as_raw_RetinaFastToneMapping( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RetinaParametersTraitConst for BoxedRef<'_, RetinaParameters>

source§

impl RetinaTraitConst for BoxedRef<'_, Retina>

source§

fn as_raw_Retina(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &str) -> Result<()>

Write xml/yml formated parameters information Read more
source§

fn write_to_storage(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Write xml/yml formated parameters information Read more
source§

fn get_magno_raw(&self) -> Result<Mat>

Accessor of the motion channel of the retina (models peripheral vision). Read more
source§

fn get_parvo_raw(&self) -> Result<Mat>

Accessor of the details channel of the retina (models foveal vision). Read more
source§

impl RgbdFrameTraitConst for BoxedRef<'_, OdometryFrame>

source§

fn as_raw_RgbdFrame(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn id(&self) -> i32

source§

fn image(&self) -> Mat

source§

fn depth(&self) -> Mat

source§

fn mask(&self) -> Mat

source§

fn normals(&self) -> Mat

source§

impl RgbdFrameTraitConst for BoxedRef<'_, RgbdFrame>

source§

fn as_raw_RgbdFrame(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn id(&self) -> i32

source§

fn image(&self) -> Mat

source§

fn depth(&self) -> Mat

source§

fn mask(&self) -> Mat

source§

fn normals(&self) -> Mat

source§

impl RgbdICPOdometryTraitConst for BoxedRef<'_, RgbdICPOdometry>

source§

impl RgbdNormalsTraitConst for BoxedRef<'_, RgbdNormals>

source§

fn as_raw_RgbdNormals(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn apply( &self, points: &impl ToInputArray, normals: &mut impl ToOutputArray ) -> Result<()>

Given a set of 3d points in a depth image, compute the normals at each point. Read more
source§

fn initialize(&self) -> Result<()>

Initializes some data that is cached for later computation If that function is not called, it will be called the first time normals are computed
source§

fn get_rows(&self) -> Result<i32>

source§

fn get_cols(&self) -> Result<i32>

source§

fn get_window_size(&self) -> Result<i32>

source§

fn get_depth(&self) -> Result<i32>

source§

fn get_k(&self) -> Result<Mat>

source§

fn get_method(&self) -> Result<i32>

source§

impl RgbdOdometryTraitConst for BoxedRef<'_, RgbdOdometry>

source§

impl RgbdPlaneTraitConst for BoxedRef<'_, RgbdPlane>

source§

fn as_raw_RgbdPlane(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_block_size(&self) -> Result<i32>

source§

fn get_min_size(&self) -> Result<i32>

source§

fn get_method(&self) -> Result<i32>

source§

fn get_threshold(&self) -> Result<f64>

source§

fn get_sensor_error_a(&self) -> Result<f64>

source§

fn get_sensor_error_b(&self) -> Result<f64>

source§

fn get_sensor_error_c(&self) -> Result<f64>

source§

impl RidgeDetectionFilterTraitConst for BoxedRef<'_, RidgeDetectionFilter>

source§

fn as_raw_RidgeDetectionFilter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl RoundLayerTraitConst for BoxedRef<'_, RoundLayer>

source§

fn as_raw_RoundLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SFMLibmvEuclideanReconstructionTraitConst for BoxedRef<'_, SFMLibmvEuclideanReconstruction>

source§

fn as_raw_SFMLibmvEuclideanReconstruction( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_error(&self) -> Result<f64>

Returns the computed reprojection error.
source§

fn get_intrinsics(&self) -> Result<Mat>

Returns the refined camera calibration matrix.
source§

impl SIFTTraitConst for BoxedRef<'_, SIFT>

source§

fn as_raw_SIFT(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_default_name(&self) -> Result<String>

source§

fn get_n_features(&self) -> Result<i32>

source§

fn get_n_octave_layers(&self) -> Result<i32>

source§

fn get_contrast_threshold(&self) -> Result<f64>

source§

fn get_edge_threshold(&self) -> Result<f64>

source§

fn get_sigma(&self) -> Result<f64>

source§

impl SURFTraitConst for BoxedRef<'_, SURF>

source§

fn as_raw_SURF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_hessian_threshold(&self) -> Result<f64>

source§

fn get_n_octaves(&self) -> Result<i32>

source§

fn get_n_octave_layers(&self) -> Result<i32>

source§

fn get_extended(&self) -> Result<bool>

source§

fn get_upright(&self) -> Result<bool>

source§

fn get_default_name(&self) -> Result<String>

source§

impl SURF_CUDATraitConst for BoxedRef<'_, SURF_CUDA>

source§

fn as_raw_SURF_CUDA(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn hessian_threshold(&self) -> f64

source§

fn n_octaves(&self) -> i32

source§

fn n_octave_layers(&self) -> i32

source§

fn extended(&self) -> bool

source§

fn upright(&self) -> bool

source§

fn keypoints_ratio(&self) -> f32

max keypoints = min(keypointsRatio * img.size().area(), 65535)
source§

fn sum(&self) -> GpuMat

source§

fn mask1(&self) -> GpuMat

source§

fn mask_sum(&self) -> GpuMat

source§

fn det(&self) -> GpuMat

source§

fn trace(&self) -> GpuMat

source§

fn max_pos_buffer(&self) -> GpuMat

source§

fn descriptor_size(&self) -> Result<i32>

returns the descriptor size in float’s (64 or 128)
source§

fn default_norm(&self) -> Result<i32>

returns the default norm type
source§

impl SVDTraitConst for BoxedRef<'_, SVD>

source§

fn as_raw_SVD(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn u(&self) -> Mat

source§

fn w(&self) -> Mat

source§

fn vt(&self) -> Mat

source§

fn back_subst( &self, rhs: &impl ToInputArray, dst: &mut impl ToOutputArray ) -> Result<()>

performs a singular value back substitution. Read more
source§

impl SVMSGDTraitConst for BoxedRef<'_, SVMSGD>

source§

fn as_raw_SVMSGD(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_svmsgd_type(&self) -> Result<i32>

%Algorithm type, one of SVMSGD::SvmsgdType. Read more
source§

fn get_margin_type(&self) -> Result<i32>

%Margin type, one of SVMSGD::MarginType. Read more
source§

fn get_margin_regularization(&self) -> Result<f32>

Parameter marginRegularization of a %SVMSGD optimization problem. Read more
source§

fn get_initial_step_size(&self) -> Result<f32>

Parameter initialStepSize of a %SVMSGD optimization problem. Read more
source§

fn get_step_decreasing_power(&self) -> Result<f32>

Parameter stepDecreasingPower of a %SVMSGD optimization problem. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Termination criteria of the training algorithm. You can specify the maximum number of iterations (maxCount) and/or how much the error could change between the iterations to make the algorithm continue (epsilon). Read more
source§

impl SVMTraitConst for BoxedRef<'_, SVM>

source§

fn as_raw_SVM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_type(&self) -> Result<i32>

Type of a %SVM formulation. See SVM::Types. Default value is SVM::C_SVC. Read more
source§

fn get_gamma(&self) -> Result<f64>

Parameter inline formula of a kernel function. For SVM::POLY, SVM::RBF, SVM::SIGMOID or SVM::CHI2. Default value is 1. Read more
source§

fn get_coef0(&self) -> Result<f64>

Parameter coef0 of a kernel function. For SVM::POLY or SVM::SIGMOID. Default value is 0. Read more
source§

fn get_degree(&self) -> Result<f64>

Parameter degree of a kernel function. For SVM::POLY. Default value is 0. Read more
source§

fn get_c(&self) -> Result<f64>

Parameter C of a %SVM optimization problem. For SVM::C_SVC, SVM::EPS_SVR or SVM::NU_SVR. Default value is 0. Read more
source§

fn get_nu(&self) -> Result<f64>

Parameter inline formula of a %SVM optimization problem. For SVM::NU_SVC, SVM::ONE_CLASS or SVM::NU_SVR. Default value is 0. Read more
source§

fn get_p(&self) -> Result<f64>

Parameter inline formula of a %SVM optimization problem. For SVM::EPS_SVR. Default value is 0. Read more
source§

fn get_class_weights(&self) -> Result<Mat>

Optional weights in the SVM::C_SVC problem, assigned to particular classes. They are multiplied by C so the parameter C of class i becomes classWeights(i) * C. Thus these weights affect the misclassification penalty for different classes. The larger weight, the larger penalty on misclassification of data from the corresponding class. Default value is empty Mat. Read more
source§

fn get_term_criteria(&self) -> Result<TermCriteria>

Termination criteria of the iterative %SVM training procedure which solves a partial case of constrained quadratic optimization problem. You can specify tolerance and/or the maximum number of iterations. Default value is TermCriteria( TermCriteria::MAX_ITER + TermCriteria::EPS, 1000, FLT_EPSILON ); Read more
source§

fn get_kernel_type(&self) -> Result<i32>

Type of a %SVM kernel. See SVM::KernelTypes. Default value is SVM::RBF.
source§

fn get_support_vectors(&self) -> Result<Mat>

Retrieves all the support vectors Read more
source§

fn get_uncompressed_support_vectors(&self) -> Result<Mat>

Retrieves all the uncompressed support vectors of a linear %SVM Read more
source§

fn get_decision_function( &self, i: i32, alpha: &mut impl ToOutputArray, svidx: &mut impl ToOutputArray ) -> Result<f64>

Retrieves the decision function Read more
source§

impl SVM_KernelTraitConst for BoxedRef<'_, SVM_Kernel>

source§

fn as_raw_SVM_Kernel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_type(&self) -> Result<i32>

source§

impl SaliencyTraitConst for BoxedRef<'_, MotionSaliency>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, MotionSaliencyBinWangApr2014>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, Objectness>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, ObjectnessBING>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, Saliency>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, StaticSaliency>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, StaticSaliencyFineGrained>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SaliencyTraitConst for BoxedRef<'_, StaticSaliencySpectralResidual>

source§

fn as_raw_Saliency(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SavedIndexParamsTraitConst for BoxedRef<'_, SavedIndexParams>

source§

fn as_raw_SavedIndexParams( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ScalarTraitConst for BoxedRef<'_, Scalar>

source§

fn as_raw_Scalar(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn val(&self) -> &[f64; 4]

source§

fn get(&self, i: i32) -> Result<f64>

source§

impl ScaleLayerInt8TraitConst for BoxedRef<'_, ScaleLayerInt8>

source§

fn as_raw_ScaleLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn output_sc(&self) -> f32

source§

fn output_zp(&self) -> i32

source§

impl ScaleLayerTraitConst for BoxedRef<'_, ScaleLayer>

source§

fn as_raw_ScaleLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has_bias(&self) -> bool

source§

fn axis(&self) -> i32

source§

fn mode(&self) -> String

source§

impl ScaleLayerTraitConst for BoxedRef<'_, ScaleLayerInt8>

source§

fn as_raw_ScaleLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn has_bias(&self) -> bool

source§

fn axis(&self) -> i32

source§

fn mode(&self) -> String

source§

impl ScanSegmentTraitConst for BoxedRef<'_, ScanSegment>

source§

fn as_raw_ScanSegment(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ScatterLayerTraitConst for BoxedRef<'_, ScatterLayer>

source§

fn as_raw_ScatterLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ScatterNDLayerTraitConst for BoxedRef<'_, ScatterNDLayer>

source§

fn as_raw_ScatterNDLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SearchParamsTraitConst for BoxedRef<'_, SearchParams>

source§

fn as_raw_SearchParams(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SegmentationModelTraitConst for BoxedRef<'_, SegmentationModel>

source§

fn as_raw_SegmentationModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyColorTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyColor>

source§

fn as_raw_SelectiveSearchSegmentationStrategyColor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyFillTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyFill>

source§

fn as_raw_SelectiveSearchSegmentationStrategyFill( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyMultipleTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyMultiple>

source§

fn as_raw_SelectiveSearchSegmentationStrategyMultiple( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategySizeTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategySize>

source§

fn as_raw_SelectiveSearchSegmentationStrategySize( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTextureTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyTexture>

source§

fn as_raw_SelectiveSearchSegmentationStrategyTexture( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategy>

source§

fn as_raw_SelectiveSearchSegmentationStrategy( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyColor>

source§

fn as_raw_SelectiveSearchSegmentationStrategy( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyFill>

source§

fn as_raw_SelectiveSearchSegmentationStrategy( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyMultiple>

source§

fn as_raw_SelectiveSearchSegmentationStrategy( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategySize>

source§

fn as_raw_SelectiveSearchSegmentationStrategy( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationStrategyTraitConst for BoxedRef<'_, SelectiveSearchSegmentationStrategyTexture>

source§

fn as_raw_SelectiveSearchSegmentationStrategy( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SelectiveSearchSegmentationTraitConst for BoxedRef<'_, SelectiveSearchSegmentation>

source§

fn as_raw_SelectiveSearchSegmentation( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SeluLayerTraitConst for BoxedRef<'_, SeluLayer>

source§

fn as_raw_SeluLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn alpha(&self) -> f32

source§

fn gamma(&self) -> f32

source§

impl ShapeContextDistanceExtractorTraitConst for BoxedRef<'_, ShapeContextDistanceExtractor>

source§

impl ShapeDistanceExtractorTraitConst for BoxedRef<'_, HausdorffDistanceExtractor>

source§

fn as_raw_ShapeDistanceExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ShapeDistanceExtractorTraitConst for BoxedRef<'_, ShapeContextDistanceExtractor>

source§

fn as_raw_ShapeDistanceExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ShapeDistanceExtractorTraitConst for BoxedRef<'_, ShapeDistanceExtractor>

source§

fn as_raw_ShapeDistanceExtractor( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ShapeTransformerTraitConst for BoxedRef<'_, AffineTransformer>

source§

fn as_raw_ShapeTransformer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn warp_image( &self, transforming_image: &impl ToInputArray, output: &mut impl ToOutputArray, flags: i32, border_mode: i32, border_value: Scalar ) -> Result<()>

Apply a transformation, given a pre-estimated transformation parameters, to an Image. Read more
source§

fn warp_image_def( &self, transforming_image: &impl ToInputArray, output: &mut impl ToOutputArray ) -> Result<()>

Apply a transformation, given a pre-estimated transformation parameters, to an Image. Read more
source§

impl ShapeTransformerTraitConst for BoxedRef<'_, ShapeTransformer>

source§

fn as_raw_ShapeTransformer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn warp_image( &self, transforming_image: &impl ToInputArray, output: &mut impl ToOutputArray, flags: i32, border_mode: i32, border_value: Scalar ) -> Result<()>

Apply a transformation, given a pre-estimated transformation parameters, to an Image. Read more
source§

fn warp_image_def( &self, transforming_image: &impl ToInputArray, output: &mut impl ToOutputArray ) -> Result<()>

Apply a transformation, given a pre-estimated transformation parameters, to an Image. Read more
source§

impl ShapeTransformerTraitConst for BoxedRef<'_, ThinPlateSplineShapeTransformer>

source§

fn as_raw_ShapeTransformer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn warp_image( &self, transforming_image: &impl ToInputArray, output: &mut impl ToOutputArray, flags: i32, border_mode: i32, border_value: Scalar ) -> Result<()>

Apply a transformation, given a pre-estimated transformation parameters, to an Image. Read more
source§

fn warp_image_def( &self, transforming_image: &impl ToInputArray, output: &mut impl ToOutputArray ) -> Result<()>

Apply a transformation, given a pre-estimated transformation parameters, to an Image. Read more
source§

impl ShiftLayerInt8TraitConst for BoxedRef<'_, ShiftLayerInt8>

source§

fn as_raw_ShiftLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ShiftLayerTraitConst for BoxedRef<'_, ShiftLayer>

source§

fn as_raw_ShiftLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl ShrinkLayerTraitConst for BoxedRef<'_, ShrinkLayer>

source§

fn as_raw_ShrinkLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn bias(&self) -> f32

source§

fn lambd(&self) -> f32

source§

impl ShuffleChannelLayerTraitConst for BoxedRef<'_, ShuffleChannelLayer>

source§

fn as_raw_ShuffleChannelLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn group(&self) -> i32

source§

impl SigmoidLayerTraitConst for BoxedRef<'_, SigmoidLayer>

source§

fn as_raw_SigmoidLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SignLayerTraitConst for BoxedRef<'_, SignLayer>

source§

fn as_raw_SignLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SimilarRectsTraitConst for BoxedRef<'_, SimilarRects>

source§

fn as_raw_SimilarRects(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn eps(&self) -> f64

source§

fn apply(&self, r1: Rect, r2: Rect) -> Result<bool>

source§

impl SimpleBlobDetectorTraitConst for BoxedRef<'_, SimpleBlobDetector>

source§

fn as_raw_SimpleBlobDetector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_params(&self) -> Result<SimpleBlobDetector_Params>

source§

fn get_default_name(&self) -> Result<String>

source§

fn get_blob_contours(&self) -> Result<Vector<Vector<Point>>>

source§

impl SimpleWBTraitConst for BoxedRef<'_, SimpleWB>

source§

fn as_raw_SimpleWB(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_input_min(&self) -> Result<f32>

Input image range minimum value Read more
source§

fn get_input_max(&self) -> Result<f32>

Input image range maximum value Read more
source§

fn get_output_min(&self) -> Result<f32>

Output image range minimum value Read more
source§

fn get_output_max(&self) -> Result<f32>

Output image range maximum value Read more
source§

fn get_p(&self) -> Result<f32>

Percent of top/bottom values to ignore Read more
source§

impl SinLayerTraitConst for BoxedRef<'_, SinLayer>

source§

fn as_raw_SinLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SinhLayerTraitConst for BoxedRef<'_, SinhLayer>

source§

fn as_raw_SinhLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SinusoidalPatternTraitConst for BoxedRef<'_, SinusoidalPattern>

source§

fn as_raw_SinusoidalPattern( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SinusoidalPattern_ParamsTraitConst for BoxedRef<'_, SinusoidalPattern_Params>

source§

fn as_raw_SinusoidalPattern_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn width(&self) -> i32

source§

fn height(&self) -> i32

source§

fn nbr_of_periods(&self) -> i32

source§

fn shift_value(&self) -> f32

source§

fn method_id(&self) -> i32

source§

fn nbr_of_pixels_between_markers(&self) -> i32

source§

fn horizontal(&self) -> bool

source§

fn set_markers(&self) -> bool

source§

fn markers_location(&self) -> Vector<Point2f>

source§

impl SliceLayerTraitConst for BoxedRef<'_, SliceLayer>

source§

fn as_raw_SliceLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn slice_ranges(&self) -> Vector<Vector<Range>>

Vector of slice ranges. Read more
source§

fn slice_steps(&self) -> Vector<Vector<i32>>

source§

fn axis(&self) -> i32

source§

fn num_split(&self) -> i32

source§

impl SoftmaxLayerInt8TraitConst for BoxedRef<'_, SoftmaxLayerInt8>

source§

fn as_raw_SoftmaxLayerInt8( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn output_sc(&self) -> f32

source§

fn output_zp(&self) -> i32

source§

impl SoftmaxLayerTraitConst for BoxedRef<'_, SoftmaxLayer>

source§

fn as_raw_SoftmaxLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn log_soft_max(&self) -> bool

source§

impl SoftmaxLayerTraitConst for BoxedRef<'_, SoftmaxLayerInt8>

source§

fn as_raw_SoftmaxLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn log_soft_max(&self) -> bool

source§

impl SoftplusLayerTraitConst for BoxedRef<'_, SoftplusLayer>

source§

fn as_raw_SoftplusLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SoftsignLayerTraitConst for BoxedRef<'_, SoftsignLayer>

source§

fn as_raw_SoftsignLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseMatConstIteratorTraitConst for BoxedRef<'_, SparseMatConstIterator>

source§

fn as_raw_SparseMatConstIterator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn m(&self) -> SparseMat

source§

fn hashidx(&self) -> size_t

source§

fn ptr(&self) -> *const u8

source§

fn node(&self) -> Result<SparseMat_Node>

returns the current node of the sparse matrix. it.node->idx is the current element index
source§

impl SparseMatConstIteratorTraitConst for BoxedRef<'_, SparseMatIterator>

source§

fn as_raw_SparseMatConstIterator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn m(&self) -> SparseMat

source§

fn hashidx(&self) -> size_t

source§

fn ptr(&self) -> *const u8

source§

fn node(&self) -> Result<SparseMat_Node>

returns the current node of the sparse matrix. it.node->idx is the current element index
source§

impl SparseMatIteratorTraitConst for BoxedRef<'_, SparseMatIterator>

source§

fn as_raw_SparseMatIterator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn node(&self) -> Result<SparseMat_Node>

returns pointer to the current sparse matrix node. it.node->idx is the index of the current element (do not modify it!)
source§

impl SparseMatTraitConst for BoxedRef<'_, SparseMat>

source§

fn as_raw_SparseMat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

source§

fn try_clone(&self) -> Result<SparseMat>

creates full copy of the matrix
source§

fn copy_to(&self, m: &mut impl SparseMatTrait) -> Result<()>

copies all the data to the destination matrix. All the previous content of m is erased
source§

fn copy_to_mat(&self, m: &mut impl MatTrait) -> Result<()>

converts sparse matrix to dense matrix.
source§

fn convert_to( &self, m: &mut impl SparseMatTrait, rtype: i32, alpha: f64 ) -> Result<()>

multiplies all the matrix elements by the specified scale factor alpha and converts the results to the specified data type Read more
source§

fn convert_to_def(&self, m: &mut impl SparseMatTrait, rtype: i32) -> Result<()>

multiplies all the matrix elements by the specified scale factor alpha and converts the results to the specified data type Read more
source§

fn convert_to_1( &self, m: &mut impl MatTrait, rtype: i32, alpha: f64, beta: f64 ) -> Result<()>

converts sparse matrix to dense n-dim matrix with optional type conversion and scaling. Read more
source§

fn convert_to_def_1(&self, m: &mut impl MatTrait, rtype: i32) -> Result<()>

converts sparse matrix to dense n-dim matrix with optional type conversion and scaling. Read more
source§

fn assign_to(&self, m: &mut impl SparseMatTrait, typ: i32) -> Result<()>

C++ default parameters Read more
source§

fn assign_to_def(&self, m: &mut impl SparseMatTrait) -> Result<()>

source§

fn elem_size(&self) -> size_t

returns the size of each element in bytes (not including the overhead - the space occupied by SparseMat::Node elements)
source§

fn elem_size1(&self) -> size_t

returns elemSize()/channels()
source§

fn typ(&self) -> i32

returns type of sparse matrix elements
source§

fn depth(&self) -> i32

returns the depth of sparse matrix elements
source§

fn channels(&self) -> i32

returns the number of channels
source§

fn size(&self) -> Result<*const i32>

returns the array of sizes, or NULL if the matrix is not allocated
source§

fn size_1(&self, i: i32) -> Result<i32>

returns the size of i-th matrix dimension (or 0)
source§

fn dims(&self) -> Result<i32>

returns the matrix dimensionality
source§

fn nzcount(&self) -> Result<size_t>

returns the number of non-zero elements (=the number of hash table nodes)
source§

fn hash(&self, i0: i32) -> Result<size_t>

computes the element hash value (1D case)
source§

fn hash_1(&self, i0: i32, i1: i32) -> Result<size_t>

computes the element hash value (2D case)
source§

fn hash_2(&self, i0: i32, i1: i32, i2: i32) -> Result<size_t>

computes the element hash value (3D case)
source§

fn hash_3(&self, idx: &i32) -> Result<size_t>

computes the element hash value (nD case)
source§

fn begin(&self) -> Result<SparseMatConstIterator>

returns the read-only sparse matrix iterator at the matrix beginning
source§

fn end(&self) -> Result<SparseMatConstIterator>

returns the read-only sparse matrix iterator at the matrix end
source§

fn node(&self, nidx: size_t) -> Result<SparseMat_Node>

source§

impl SparseMat_HdrTraitConst for BoxedRef<'_, SparseMat_Hdr>

source§

fn as_raw_SparseMat_Hdr( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn refcount(&self) -> i32

source§

fn dims(&self) -> i32

source§

fn value_offset(&self) -> i32

source§

fn node_size(&self) -> size_t

source§

fn node_count(&self) -> size_t

source§

fn free_list(&self) -> size_t

source§

fn pool(&self) -> Vector<u8>

source§

fn hashtab(&self) -> Vector<size_t>

source§

fn size(&self) -> &[i32; 32]

source§

impl SparseMat_NodeTraitConst for BoxedRef<'_, SparseMat_Node>

source§

fn as_raw_SparseMat_Node( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn hashval(&self) -> size_t

hash value
source§

fn next(&self) -> size_t

index of the next node in the same hash table entry
source§

fn idx(&self) -> &[i32; 32]

index of the matrix element
source§

impl SparseMatchInterpolatorTraitConst for BoxedRef<'_, EdgeAwareInterpolator>

source§

fn as_raw_SparseMatchInterpolator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseMatchInterpolatorTraitConst for BoxedRef<'_, RICInterpolator>

source§

fn as_raw_SparseMatchInterpolator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseMatchInterpolatorTraitConst for BoxedRef<'_, SparseMatchInterpolator>

source§

fn as_raw_SparseMatchInterpolator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseOpticalFlowTraitConst for BoxedRef<'_, SparseOpticalFlow>

source§

fn as_raw_SparseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseOpticalFlowTraitConst for BoxedRef<'_, SparsePyrLKOpticalFlow>

source§

fn as_raw_SparseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseOpticalFlowTraitConst for BoxedRef<'_, SparseRLOFOpticalFlow>

source§

fn as_raw_SparseOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparsePyrLKOpticalFlowTraitConst for BoxedRef<'_, SparsePyrLKOpticalFlow>

source§

fn as_raw_SparsePyrLKOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_win_size(&self) -> Result<Size>

source§

fn get_max_level(&self) -> Result<i32>

source§

fn get_term_criteria(&self) -> Result<TermCriteria>

source§

fn get_flags(&self) -> Result<i32>

source§

fn get_min_eig_threshold(&self) -> Result<f64>

source§

impl SparsePyrLkOptFlowEstimatorGpuTraitConst for BoxedRef<'_, SparsePyrLkOptFlowEstimatorGpu>

source§

fn as_raw_SparsePyrLkOptFlowEstimatorGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparsePyrLkOptFlowEstimatorTraitConst for BoxedRef<'_, SparsePyrLkOptFlowEstimator>

source§

fn as_raw_SparsePyrLkOptFlowEstimator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SparseRLOFOpticalFlowTraitConst for BoxedRef<'_, SparseRLOFOpticalFlow>

source§

fn as_raw_SparseRLOFOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rlof_optical_flow_parameter( &self ) -> Result<Ptr<RLOFOpticalFlowParameter>>

@copydoc DenseRLOFOpticalFlow::setRLOFOpticalFlowParameter Read more
source§

fn get_forward_backward(&self) -> Result<f32>

Threshold for the forward backward confidence check For each feature point a motion vector inline formula is computed. * If the forward backward error block formula * is larger than threshold given by this function then the status will not be used by the following * vector field interpolation. inline formula denotes the backward flow. Note, the forward backward test * will only be applied if the threshold > 0. This may results into a doubled runtime for the motion estimation. * setForwardBackward Read more
source§

impl SphericalWarperGpuTraitConst for BoxedRef<'_, SphericalWarperGpu>

source§

fn as_raw_SphericalWarperGpu( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl SphericalWarperTraitConst for BoxedRef<'_, SphericalWarper>

source§

fn as_raw_SphericalWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl SplitLayerTraitConst for BoxedRef<'_, SplitLayer>

source§

fn as_raw_SplitLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn outputs_count(&self) -> i32

Number of copies that will be produced (is ignored when negative).
source§

impl SqrtLayerTraitConst for BoxedRef<'_, SqrtLayer>

source§

fn as_raw_SqrtLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl StabilizerBaseTraitConst for BoxedRef<'_, OnePassStabilizer>

source§

impl StabilizerBaseTraitConst for BoxedRef<'_, StabilizerBase>

source§

impl StabilizerBaseTraitConst for BoxedRef<'_, TwoPassStabilizer>

source§

impl StandardCollectorTraitConst for BoxedRef<'_, StandardCollector>

source§

fn as_raw_StandardCollector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_min_label(&self) -> Result<i32>

Returns label with minimal distance
source§

fn get_min_dist(&self) -> Result<f64>

Returns minimal distance value
source§

fn get_results(&self, sorted: bool) -> Result<Vector<Tuple<(i32, f64)>>>

Return results as vector Read more
source§

fn get_results_def(&self) -> Result<Vector<Tuple<(i32, f64)>>>

Return results as vector Read more
source§

impl StarDetectorTraitConst for BoxedRef<'_, StarDetector>

source§

impl StatModelTraitConst for BoxedRef<'_, ANN_MLP>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, Boost>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, DTrees>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, EM>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, KNearest>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, LogisticRegression>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, NormalBayesClassifier>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, RTrees>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, SVM>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, SVMSGD>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StatModelTraitConst for BoxedRef<'_, StatModel>

source§

fn as_raw_StatModel(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_var_count(&self) -> Result<i32>

Returns the number of variables in training samples
source§

fn empty(&self) -> Result<bool>

source§

fn is_trained(&self) -> Result<bool>

Returns true if the model is trained
source§

fn is_classifier(&self) -> Result<bool>

Returns true if the model is classifier
source§

fn calc_error( &self, data: &Ptr<TrainData>, test: bool, resp: &mut impl ToOutputArray ) -> Result<f32>

Computes error on the training or test dataset Read more
source§

fn predict( &self, samples: &impl ToInputArray, results: &mut impl ToOutputArray, flags: i32 ) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

fn predict_def(&self, samples: &impl ToInputArray) -> Result<f32>

Predicts response(s) for the provided sample(s) Read more
source§

impl StaticSaliencyFineGrainedTraitConst for BoxedRef<'_, StaticSaliencyFineGrained>

source§

fn as_raw_StaticSaliencyFineGrained( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl StaticSaliencySpectralResidualTraitConst for BoxedRef<'_, StaticSaliencySpectralResidual>

source§

fn as_raw_StaticSaliencySpectralResidual( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

source§

fn get_image_width(&self) -> Result<i32>

source§

fn get_image_height(&self) -> Result<i32>

source§

impl StaticSaliencyTraitConst for BoxedRef<'_, StaticSaliency>

source§

fn as_raw_StaticSaliency( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl StaticSaliencyTraitConst for BoxedRef<'_, StaticSaliencyFineGrained>

source§

fn as_raw_StaticSaliency( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl StaticSaliencyTraitConst for BoxedRef<'_, StaticSaliencySpectralResidual>

source§

fn as_raw_StaticSaliency( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl StereoBMTraitConst for BoxedRef<'_, CUDA_StereoBM>

source§

impl StereoBMTraitConst for BoxedRef<'_, StereoBM>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, CUDA_StereoBM>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, CUDA_StereoBeliefPropagation>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, CUDA_StereoConstantSpaceBP>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, CUDA_StereoSGM>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, StereoBM>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, StereoMatcher>

source§

impl StereoMatcherTraitConst for BoxedRef<'_, StereoSGBM>

source§

impl StereoSGBMTraitConst for BoxedRef<'_, CUDA_StereoSGM>

source§

fn as_raw_StereoSGBM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pre_filter_cap(&self) -> Result<i32>

source§

fn get_uniqueness_ratio(&self) -> Result<i32>

source§

fn get_p1(&self) -> Result<i32>

source§

fn get_p2(&self) -> Result<i32>

source§

fn get_mode(&self) -> Result<i32>

source§

impl StereoSGBMTraitConst for BoxedRef<'_, StereoSGBM>

source§

fn as_raw_StereoSGBM(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pre_filter_cap(&self) -> Result<i32>

source§

fn get_uniqueness_ratio(&self) -> Result<i32>

source§

fn get_p1(&self) -> Result<i32>

source§

fn get_p2(&self) -> Result<i32>

source§

fn get_mode(&self) -> Result<i32>

source§

impl StereographicWarperTraitConst for BoxedRef<'_, StereographicWarper>

source§

fn as_raw_StereographicWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl StitcherTraitConst for BoxedRef<'_, Stitcher>

source§

impl StreamTraitConst for BoxedRef<'_, Stream>

source§

fn as_raw_Stream(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn query_if_complete(&self) -> Result<bool>

Returns true if the current stream queue is finished. Otherwise, it returns false.
source§

fn cuda_ptr(&self) -> Result<*mut c_void>

return Pointer to CUDA stream
source§

impl StructuredEdgeDetectionTraitConst for BoxedRef<'_, StructuredEdgeDetection>

source§

fn as_raw_StructuredEdgeDetection( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect_edges( &self, src: &impl ToInputArray, dst: &mut impl ToOutputArray ) -> Result<()>

The function detects edges in src and draw them to dst. Read more
source§

fn compute_orientation( &self, src: &impl ToInputArray, dst: &mut impl ToOutputArray ) -> Result<()>

The function computes orientation from edge image. Read more
source§

fn edges_nms( &self, edge_image: &impl ToInputArray, orientation_image: &impl ToInputArray, dst: &mut impl ToOutputArray, r: i32, s: i32, m: f32, is_parallel: bool ) -> Result<()>

The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction. Read more
source§

fn edges_nms_def( &self, edge_image: &impl ToInputArray, orientation_image: &impl ToInputArray, dst: &mut impl ToOutputArray ) -> Result<()>

The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction. Read more
source§

impl StructuredLightPatternTraitConst for BoxedRef<'_, GrayCodePattern>

source§

fn as_raw_StructuredLightPattern( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn decode( &self, pattern_images: &Vector<Vector<Mat>>, disparity_map: &mut impl ToOutputArray, black_images: &impl ToInputArray, white_images: &impl ToInputArray, flags: i32 ) -> Result<bool>

Decodes the structured light pattern, generating a disparity map Read more
source§

fn decode_def( &self, pattern_images: &Vector<Vector<Mat>>, disparity_map: &mut impl ToOutputArray ) -> Result<bool>

Decodes the structured light pattern, generating a disparity map Read more
source§

impl StructuredLightPatternTraitConst for BoxedRef<'_, SinusoidalPattern>

source§

fn as_raw_StructuredLightPattern( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn decode( &self, pattern_images: &Vector<Vector<Mat>>, disparity_map: &mut impl ToOutputArray, black_images: &impl ToInputArray, white_images: &impl ToInputArray, flags: i32 ) -> Result<bool>

Decodes the structured light pattern, generating a disparity map Read more
source§

fn decode_def( &self, pattern_images: &Vector<Vector<Mat>>, disparity_map: &mut impl ToOutputArray ) -> Result<bool>

Decodes the structured light pattern, generating a disparity map Read more
source§

impl StructuredLightPatternTraitConst for BoxedRef<'_, StructuredLightPattern>

source§

fn as_raw_StructuredLightPattern( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn decode( &self, pattern_images: &Vector<Vector<Mat>>, disparity_map: &mut impl ToOutputArray, black_images: &impl ToInputArray, white_images: &impl ToInputArray, flags: i32 ) -> Result<bool>

Decodes the structured light pattern, generating a disparity map Read more
source§

fn decode_def( &self, pattern_images: &Vector<Vector<Mat>>, disparity_map: &mut impl ToOutputArray ) -> Result<bool>

Decodes the structured light pattern, generating a disparity map Read more
source§

impl Subdiv2DTraitConst for BoxedRef<'_, Subdiv2D>

source§

fn as_raw_Subdiv2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_edge_list(&self, edge_list: &mut Vector<Vec4f>) -> Result<()>

Returns a list of all edges. Read more
source§

fn get_leading_edge_list( &self, leading_edge_list: &mut Vector<i32> ) -> Result<()>

Returns a list of the leading edge ID connected to each triangle. Read more
source§

fn get_triangle_list(&self, triangle_list: &mut Vector<Vec6f>) -> Result<()>

Returns a list of all triangles. Read more
source§

fn get_vertex(&self, vertex: i32, first_edge: &mut i32) -> Result<Point2f>

Returns vertex location from vertex ID. Read more
source§

fn get_vertex_def(&self, vertex: i32) -> Result<Point2f>

Returns vertex location from vertex ID. Read more
source§

fn get_edge(&self, edge: i32, next_edge_type: i32) -> Result<i32>

Returns one of the edges related to the given edge. Read more
source§

fn next_edge(&self, edge: i32) -> Result<i32>

Returns next edge around the edge origin. Read more
source§

fn rotate_edge(&self, edge: i32, rotate: i32) -> Result<i32>

Returns another edge of the same quad-edge. Read more
source§

fn sym_edge(&self, edge: i32) -> Result<i32>

source§

fn edge_org(&self, edge: i32, orgpt: &mut Point2f) -> Result<i32>

Returns the edge origin. Read more
source§

fn edge_org_def(&self, edge: i32) -> Result<i32>

Returns the edge origin. Read more
source§

fn edge_dst(&self, edge: i32, dstpt: &mut Point2f) -> Result<i32>

Returns the edge destination. Read more
source§

fn edge_dst_def(&self, edge: i32) -> Result<i32>

Returns the edge destination. Read more
source§

impl SuperRes_BroxOpticalFlowTraitConst for BoxedRef<'_, SuperRes_BroxOpticalFlow>

source§

fn as_raw_SuperRes_BroxOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_alpha(&self) -> Result<f64>

Flow smoothness Read more
source§

fn get_gamma(&self) -> Result<f64>

Gradient constancy importance Read more
source§

fn get_scale_factor(&self) -> Result<f64>

Pyramid scale factor Read more
source§

fn get_inner_iterations(&self) -> Result<i32>

Number of lagged non-linearity iterations (inner loop) Read more
source§

fn get_outer_iterations(&self) -> Result<i32>

Number of warping iterations (number of pyramid levels) Read more
source§

fn get_solver_iterations(&self) -> Result<i32>

Number of linear system solver iterations Read more
source§

impl SuperRes_DenseOpticalFlowExtTraitConst for BoxedRef<'_, SuperRes_BroxOpticalFlow>

source§

fn as_raw_SuperRes_DenseOpticalFlowExt( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_DenseOpticalFlowExtTraitConst for BoxedRef<'_, SuperRes_DenseOpticalFlowExt>

source§

fn as_raw_SuperRes_DenseOpticalFlowExt( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_DenseOpticalFlowExtTraitConst for BoxedRef<'_, SuperRes_DualTVL1OpticalFlow>

source§

fn as_raw_SuperRes_DenseOpticalFlowExt( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_DenseOpticalFlowExtTraitConst for BoxedRef<'_, SuperRes_FarnebackOpticalFlow>

source§

fn as_raw_SuperRes_DenseOpticalFlowExt( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_DenseOpticalFlowExtTraitConst for BoxedRef<'_, SuperRes_PyrLKOpticalFlow>

source§

fn as_raw_SuperRes_DenseOpticalFlowExt( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_DualTVL1OpticalFlowTraitConst for BoxedRef<'_, SuperRes_DualTVL1OpticalFlow>

source§

fn as_raw_SuperRes_DualTVL1OpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_tau(&self) -> Result<f64>

See also Read more
source§

fn get_lambda(&self) -> Result<f64>

See also Read more
source§

fn get_theta(&self) -> Result<f64>

See also Read more
source§

fn get_scales_number(&self) -> Result<i32>

See also Read more
source§

fn get_warpings_number(&self) -> Result<i32>

See also Read more
source§

fn get_epsilon(&self) -> Result<f64>

See also Read more
source§

fn get_iterations(&self) -> Result<i32>

See also Read more
source§

fn get_use_initial_flow(&self) -> Result<bool>

See also Read more
source§

impl SuperRes_FarnebackOpticalFlowTraitConst for BoxedRef<'_, SuperRes_FarnebackOpticalFlow>

source§

fn as_raw_SuperRes_FarnebackOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pyr_scale(&self) -> Result<f64>

See also Read more
source§

fn get_levels_number(&self) -> Result<i32>

See also Read more
source§

fn get_window_size(&self) -> Result<i32>

See also Read more
source§

fn get_iterations(&self) -> Result<i32>

See also Read more
source§

fn get_poly_n(&self) -> Result<i32>

See also Read more
source§

fn get_poly_sigma(&self) -> Result<f64>

See also Read more
source§

fn get_flags(&self) -> Result<i32>

See also Read more
source§

impl SuperRes_FrameSourceTraitConst for BoxedRef<'_, SuperRes_FrameSource>

source§

fn as_raw_SuperRes_FrameSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_FrameSourceTraitConst for BoxedRef<'_, SuperRes_SuperResolution>

source§

fn as_raw_SuperRes_FrameSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperRes_PyrLKOpticalFlowTraitConst for BoxedRef<'_, SuperRes_PyrLKOpticalFlow>

source§

fn as_raw_SuperRes_PyrLKOpticalFlow( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_window_size(&self) -> Result<i32>

See also Read more
source§

fn get_max_level(&self) -> Result<i32>

See also Read more
source§

fn get_iterations(&self) -> Result<i32>

See also Read more
source§

impl SuperRes_SuperResolutionTraitConst for BoxedRef<'_, SuperRes_SuperResolution>

source§

fn as_raw_SuperRes_SuperResolution( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<i32>

Scale factor Read more
source§

fn get_iterations(&self) -> Result<i32>

Iterations count Read more
source§

fn get_tau(&self) -> Result<f64>

Asymptotic value of steepest descent method Read more
source§

fn get_lambda(&self) -> Result<f64>

Weight parameter to balance data term and smoothness term Read more
source§

fn get_alpha(&self) -> Result<f64>

Parameter of spacial distribution in Bilateral-TV Read more
source§

fn get_kernel_size(&self) -> Result<i32>

Kernel size of Bilateral-TV filter Read more
source§

fn get_blur_kernel_size(&self) -> Result<i32>

Gaussian blur kernel size Read more
source§

fn get_blur_sigma(&self) -> Result<f64>

Gaussian blur sigma Read more
source§

fn get_temporal_area_radius(&self) -> Result<i32>

Radius of the temporal search area Read more
source§

fn get_optical_flow(&self) -> Result<Ptr<SuperRes_DenseOpticalFlowExt>>

Dense optical flow algorithm Read more
source§

impl SuperpixelLSCTraitConst for BoxedRef<'_, SuperpixelLSC>

source§

fn as_raw_SuperpixelLSC( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_number_of_superpixels(&self) -> Result<i32>

Calculates the actual amount of superpixels on a given segmentation computed and stored in SuperpixelLSC object.
source§

fn get_labels(&self, labels_out: &mut impl ToOutputArray) -> Result<()>

Returns the segmentation labeling of the image. Read more
source§

fn get_label_contour_mask( &self, image: &mut impl ToOutputArray, thick_line: bool ) -> Result<()>

Returns the mask of the superpixel segmentation stored in SuperpixelLSC object. Read more
source§

fn get_label_contour_mask_def( &self, image: &mut impl ToOutputArray ) -> Result<()>

Returns the mask of the superpixel segmentation stored in SuperpixelLSC object. Read more
source§

impl SuperpixelSEEDSTraitConst for BoxedRef<'_, SuperpixelSEEDS>

source§

fn as_raw_SuperpixelSEEDS( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SuperpixelSLICTraitConst for BoxedRef<'_, SuperpixelSLIC>

source§

fn as_raw_SuperpixelSLIC( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_number_of_superpixels(&self) -> Result<i32>

Calculates the actual amount of superpixels on a given segmentation computed and stored in SuperpixelSLIC object.
source§

fn get_labels(&self, labels_out: &mut impl ToOutputArray) -> Result<()>

Returns the segmentation labeling of the image. Read more
source§

fn get_label_contour_mask( &self, image: &mut impl ToOutputArray, thick_line: bool ) -> Result<()>

Returns the mask of the superpixel segmentation stored in SuperpixelSLIC object. Read more
source§

fn get_label_contour_mask_def( &self, image: &mut impl ToOutputArray ) -> Result<()>

Returns the mask of the superpixel segmentation stored in SuperpixelSLIC object. Read more
source§

impl SwishLayerTraitConst for BoxedRef<'_, SwishLayer>

source§

fn as_raw_SwishLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl SyntheticSequenceGeneratorTraitConst for BoxedRef<'_, SyntheticSequenceGenerator>

source§

fn as_raw_SyntheticSequenceGenerator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TBMRTraitConst for BoxedRef<'_, TBMR>

source§

fn as_raw_TBMR(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_min_area(&self) -> Result<i32>

source§

fn get_max_area_relative(&self) -> Result<f32>

source§

fn get_scale_factor(&self) -> Result<f32>

source§

fn get_n_scales(&self) -> Result<i32>

source§

impl TEBLIDTraitConst for BoxedRef<'_, TEBLID>

source§

fn as_raw_TEBLID(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_default_name(&self) -> Result<String>

source§

impl TanHLayerTraitConst for BoxedRef<'_, TanHLayer>

source§

fn as_raw_TanHLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TanLayerTraitConst for BoxedRef<'_, TanLayer>

source§

fn as_raw_TanLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TargetArchsTraitConst for BoxedRef<'_, TargetArchs>

source§

fn as_raw_TargetArchs(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TextDetectionModelTraitConst for BoxedRef<'_, TextDetectionModel>

source§

fn as_raw_TextDetectionModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect_with_confidences( &self, frame: &impl ToInputArray, detections: &mut Vector<Vector<Point>>, confidences: &mut Vector<f32> ) -> Result<()>

Performs detection Read more
source§

fn detect( &self, frame: &impl ToInputArray, detections: &mut Vector<Vector<Point>> ) -> Result<()>

Performs detection Read more
source§

fn detect_text_rectangles( &self, frame: &impl ToInputArray, detections: &mut Vector<RotatedRect>, confidences: &mut Vector<f32> ) -> Result<()>

Performs detection Read more
source§

fn detect_text_rectangles_1( &self, frame: &impl ToInputArray, detections: &mut Vector<RotatedRect> ) -> Result<()>

Performs detection Read more
source§

impl TextDetectionModelTraitConst for BoxedRef<'_, TextDetectionModel_DB>

source§

fn as_raw_TextDetectionModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect_with_confidences( &self, frame: &impl ToInputArray, detections: &mut Vector<Vector<Point>>, confidences: &mut Vector<f32> ) -> Result<()>

Performs detection Read more
source§

fn detect( &self, frame: &impl ToInputArray, detections: &mut Vector<Vector<Point>> ) -> Result<()>

Performs detection Read more
source§

fn detect_text_rectangles( &self, frame: &impl ToInputArray, detections: &mut Vector<RotatedRect>, confidences: &mut Vector<f32> ) -> Result<()>

Performs detection Read more
source§

fn detect_text_rectangles_1( &self, frame: &impl ToInputArray, detections: &mut Vector<RotatedRect> ) -> Result<()>

Performs detection Read more
source§

impl TextDetectionModelTraitConst for BoxedRef<'_, TextDetectionModel_EAST>

source§

fn as_raw_TextDetectionModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn detect_with_confidences( &self, frame: &impl ToInputArray, detections: &mut Vector<Vector<Point>>, confidences: &mut Vector<f32> ) -> Result<()>

Performs detection Read more
source§

fn detect( &self, frame: &impl ToInputArray, detections: &mut Vector<Vector<Point>> ) -> Result<()>

Performs detection Read more
source§

fn detect_text_rectangles( &self, frame: &impl ToInputArray, detections: &mut Vector<RotatedRect>, confidences: &mut Vector<f32> ) -> Result<()>

Performs detection Read more
source§

fn detect_text_rectangles_1( &self, frame: &impl ToInputArray, detections: &mut Vector<RotatedRect> ) -> Result<()>

Performs detection Read more
source§

impl TextDetectionModel_DBTraitConst for BoxedRef<'_, TextDetectionModel_DB>

source§

fn as_raw_TextDetectionModel_DB( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_binary_threshold(&self) -> Result<f32>

source§

fn get_polygon_threshold(&self) -> Result<f32>

source§

fn get_unclip_ratio(&self) -> Result<f64>

source§

fn get_max_candidates(&self) -> Result<i32>

source§

impl TextDetectionModel_EASTTraitConst for BoxedRef<'_, TextDetectionModel_EAST>

source§

fn as_raw_TextDetectionModel_EAST( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_confidence_threshold(&self) -> Result<f32>

Get the detection confidence threshold
source§

fn get_nms_threshold(&self) -> Result<f32>

Get the detection confidence threshold
source§

impl TextDetectorCNNTraitConst for BoxedRef<'_, TextDetectorCNN>

source§

fn as_raw_TextDetectorCNN( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TextDetectorTraitConst for BoxedRef<'_, TextDetector>

source§

fn as_raw_TextDetector(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TextDetectorTraitConst for BoxedRef<'_, TextDetectorCNN>

source§

fn as_raw_TextDetector(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TextRecognitionModelTraitConst for BoxedRef<'_, TextRecognitionModel>

source§

fn as_raw_TextRecognitionModel( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_decode_type(&self) -> Result<String>

Get the decoding method Read more
source§

fn get_vocabulary(&self) -> Result<Vector<String>>

Get the vocabulary for recognition. Read more
source§

fn recognize(&self, frame: &impl ToInputArray) -> Result<String>

Given the @p input frame, create input blob, run net and return recognition result Read more
source§

fn recognize_1( &self, frame: &impl ToInputArray, roi_rects: &impl ToInputArray, results: &mut Vector<String> ) -> Result<()>

Given the @p input frame, create input blob, run net and return recognition result Read more
source§

impl TextTraitConst for BoxedRef<'_, Text>

source§

fn as_raw_Text(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn text(&self) -> String

The text string to be drawn
source§

fn org(&self) -> Point

The bottom-left corner of the text string in the image
source§

fn ff(&self) -> i32

The font type, see #HersheyFonts
source§

fn fs(&self) -> f64

The font scale factor that is multiplied by the font-specific base size
source§

fn color(&self) -> Scalar

The text color
source§

fn thick(&self) -> i32

The thickness of the lines used to draw a text
source§

fn lt(&self) -> i32

The line type. See #LineTypes
source§

fn bottom_left_origin(&self) -> bool

When true, the image data origin is at the bottom-left corner. Otherwise, it is at the top-left corner
source§

impl Texture2DTraitConst for BoxedRef<'_, Texture2D>

source§

fn as_raw_Texture2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn copy_to( &self, arr: &mut impl ToOutputArray, ddepth: i32, auto_release: bool ) -> Result<()>

Copies from OpenGL texture to host/device memory or another OpenGL texture object. Read more
source§

fn copy_to_def(&self, arr: &mut impl ToOutputArray) -> Result<()>

Copies from OpenGL texture to host/device memory or another OpenGL texture object. Read more
source§

fn bind(&self) -> Result<()>

Binds texture to current active texture unit for GL_TEXTURE_2D target.
source§

fn rows(&self) -> Result<i32>

source§

fn cols(&self) -> Result<i32>

source§

fn size(&self) -> Result<Size>

source§

fn empty(&self) -> Result<bool>

source§

fn format(&self) -> Result<Texture2D_Format>

source§

fn tex_id(&self) -> Result<u32>

get OpenGL opject id
source§

impl ThinPlateSplineShapeTransformerTraitConst for BoxedRef<'_, ThinPlateSplineShapeTransformer>

source§

fn as_raw_ThinPlateSplineShapeTransformer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_regularization_parameter(&self) -> Result<f64>

source§

impl ThresholdedReluLayerTraitConst for BoxedRef<'_, ThresholdedReluLayer>

source§

fn as_raw_ThresholdedReluLayer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn alpha(&self) -> f32

source§

impl TickMeterTraitConst for BoxedRef<'_, TickMeter>

source§

fn as_raw_TickMeter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_time_ticks(&self) -> Result<i64>

returns counted ticks.
source§

fn get_time_micro(&self) -> Result<f64>

returns passed time in microseconds.
source§

fn get_time_milli(&self) -> Result<f64>

returns passed time in milliseconds.
source§

fn get_time_sec(&self) -> Result<f64>

returns passed time in seconds.
source§

fn get_counter(&self) -> Result<i64>

returns internal counter value.
source§

fn get_fps(&self) -> Result<f64>

returns average FPS (frames per second) value.
source§

fn get_avg_time_sec(&self) -> Result<f64>

returns average time in seconds
source§

fn get_avg_time_milli(&self) -> Result<f64>

returns average time in milliseconds
source§

impl TileLayerTraitConst for BoxedRef<'_, TileLayer>

source§

fn as_raw_TileLayer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TimerTraitConst for BoxedRef<'_, Timer>

source§

fn as_raw_Timer(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn duration_ns(&self) -> Result<u64>

source§

impl ToFileMotionWriterTraitConst for BoxedRef<'_, ToFileMotionWriter>

source§

fn as_raw_ToFileMotionWriter( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_model(&self) -> Result<MotionModel>

source§

impl<T: Boxed + ToInputArray> ToInputArray for &BoxedRef<'_, T>

source§

impl<T: Boxed + ToInputArray> ToInputArray for BoxedRef<'_, T>

source§

impl TonemapDragoTraitConst for BoxedRef<'_, TonemapDrago>

source§

fn as_raw_TonemapDrago(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_saturation(&self) -> Result<f32>

source§

fn get_bias(&self) -> Result<f32>

source§

impl TonemapDurandTraitConst for BoxedRef<'_, TonemapDurand>

source§

fn as_raw_TonemapDurand( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_saturation(&self) -> Result<f32>

source§

fn get_contrast(&self) -> Result<f32>

source§

fn get_sigma_space(&self) -> Result<f32>

source§

fn get_sigma_color(&self) -> Result<f32>

source§

impl TonemapMantiukTraitConst for BoxedRef<'_, TonemapMantiuk>

source§

fn as_raw_TonemapMantiuk( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_scale(&self) -> Result<f32>

source§

fn get_saturation(&self) -> Result<f32>

source§

impl TonemapReinhardTraitConst for BoxedRef<'_, TonemapReinhard>

source§

fn as_raw_TonemapReinhard( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_intensity(&self) -> Result<f32>

source§

fn get_light_adaptation(&self) -> Result<f32>

source§

fn get_color_adaptation(&self) -> Result<f32>

source§

impl TonemapTraitConst for BoxedRef<'_, Tonemap>

source§

fn as_raw_Tonemap(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_gamma(&self) -> Result<f32>

source§

impl TonemapTraitConst for BoxedRef<'_, TonemapDrago>

source§

fn as_raw_Tonemap(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_gamma(&self) -> Result<f32>

source§

impl TonemapTraitConst for BoxedRef<'_, TonemapDurand>

source§

fn as_raw_Tonemap(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_gamma(&self) -> Result<f32>

source§

impl TonemapTraitConst for BoxedRef<'_, TonemapMantiuk>

source§

fn as_raw_Tonemap(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_gamma(&self) -> Result<f32>

source§

impl TonemapTraitConst for BoxedRef<'_, TonemapReinhard>

source§

fn as_raw_Tonemap(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_gamma(&self) -> Result<f32>

source§

impl TrackerCSRTTraitConst for BoxedRef<'_, TrackerCSRT>

source§

fn as_raw_TrackerCSRT(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerCSRT_ParamsTraitConst for BoxedRef<'_, TrackerCSRT_Params>

source§

fn as_raw_TrackerCSRT_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn use_hog(&self) -> bool

source§

fn use_color_names(&self) -> bool

source§

fn use_gray(&self) -> bool

source§

fn use_rgb(&self) -> bool

source§

fn use_channel_weights(&self) -> bool

source§

fn use_segmentation(&self) -> bool

source§

fn window_function(&self) -> String

Window function: “hann”, “cheb”, “kaiser”
source§

fn kaiser_alpha(&self) -> f32

source§

fn cheb_attenuation(&self) -> f32

source§

fn template_size(&self) -> f32

source§

fn gsl_sigma(&self) -> f32

source§

fn hog_orientations(&self) -> f32

source§

fn hog_clip(&self) -> f32

source§

fn padding(&self) -> f32

source§

fn filter_lr(&self) -> f32

source§

fn weights_lr(&self) -> f32

source§

fn num_hog_channels_used(&self) -> i32

source§

fn admm_iterations(&self) -> i32

source§

fn histogram_bins(&self) -> i32

source§

fn histogram_lr(&self) -> f32

source§

fn background_ratio(&self) -> i32

source§

fn number_of_scales(&self) -> i32

source§

fn scale_sigma_factor(&self) -> f32

source§

fn scale_model_max_area(&self) -> f32

source§

fn scale_lr(&self) -> f32

source§

fn scale_step(&self) -> f32

source§

fn psr_threshold(&self) -> f32

we lost the target, if the psr is lower than this.
source§

impl TrackerDaSiamRPNTraitConst for BoxedRef<'_, TrackerDaSiamRPN>

source§

fn as_raw_TrackerDaSiamRPN( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerDaSiamRPN_ParamsTraitConst for BoxedRef<'_, TrackerDaSiamRPN_Params>

source§

fn as_raw_TrackerDaSiamRPN_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn model(&self) -> String

source§

fn kernel_cls1(&self) -> String

source§

fn kernel_r1(&self) -> String

source§

fn backend(&self) -> i32

source§

fn target(&self) -> i32

source§

impl TrackerGOTURNTraitConst for BoxedRef<'_, TrackerGOTURN>

source§

fn as_raw_TrackerGOTURN( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerGOTURN_ParamsTraitConst for BoxedRef<'_, TrackerGOTURN_Params>

source§

fn as_raw_TrackerGOTURN_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn model_txt(&self) -> String

source§

fn model_bin(&self) -> String

source§

impl TrackerKCFTraitConst for BoxedRef<'_, TrackerKCF>

source§

fn as_raw_TrackerKCF(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerMILTraitConst for BoxedRef<'_, TrackerMIL>

source§

fn as_raw_TrackerMIL(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerNanoTraitConst for BoxedRef<'_, TrackerNano>

source§

fn as_raw_TrackerNano(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerNano_ParamsTraitConst for BoxedRef<'_, TrackerNano_Params>

source§

fn as_raw_TrackerNano_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn backbone(&self) -> String

source§

fn neckhead(&self) -> String

source§

fn backend(&self) -> i32

source§

fn target(&self) -> i32

source§

impl TrackerTraitConst for BoxedRef<'_, Tracker>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerCSRT>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerDaSiamRPN>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerGOTURN>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerKCF>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerMIL>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerNano>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerTraitConst for BoxedRef<'_, TrackerVit>

source§

fn as_raw_Tracker(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerVitTraitConst for BoxedRef<'_, TrackerVit>

source§

fn as_raw_TrackerVit(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl TrackerVit_ParamsTraitConst for BoxedRef<'_, TrackerVit_Params>

source§

fn as_raw_TrackerVit_Params( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn net(&self) -> String

source§

fn backend(&self) -> i32

source§

fn target(&self) -> i32

source§

fn meanvalue(&self) -> Scalar

source§

fn stdvalue(&self) -> Scalar

source§

impl TrainDataTraitConst for BoxedRef<'_, TrainData>

source§

fn as_raw_TrainData(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_layout(&self) -> Result<i32>

source§

fn get_n_train_samples(&self) -> Result<i32>

source§

fn get_n_test_samples(&self) -> Result<i32>

source§

fn get_n_samples(&self) -> Result<i32>

source§

fn get_n_vars(&self) -> Result<i32>

source§

fn get_n_all_vars(&self) -> Result<i32>

source§

fn get_sample( &self, var_idx: &impl ToInputArray, sidx: i32, buf: &mut f32 ) -> Result<()>

source§

fn get_samples(&self) -> Result<Mat>

source§

fn get_missing(&self) -> Result<Mat>

source§

fn get_train_samples( &self, layout: i32, compress_samples: bool, compress_vars: bool ) -> Result<Mat>

Returns matrix of train samples Read more
source§

fn get_train_samples_def(&self) -> Result<Mat>

Returns matrix of train samples Read more
source§

fn get_train_responses(&self) -> Result<Mat>

Returns the vector of responses Read more
source§

fn get_train_norm_cat_responses(&self) -> Result<Mat>

Returns the vector of normalized categorical responses Read more
source§

fn get_test_responses(&self) -> Result<Mat>

source§

fn get_test_norm_cat_responses(&self) -> Result<Mat>

source§

fn get_responses(&self) -> Result<Mat>

source§

fn get_norm_cat_responses(&self) -> Result<Mat>

source§

fn get_sample_weights(&self) -> Result<Mat>

source§

fn get_train_sample_weights(&self) -> Result<Mat>

source§

fn get_test_sample_weights(&self) -> Result<Mat>

source§

fn get_var_idx(&self) -> Result<Mat>

source§

fn get_var_type(&self) -> Result<Mat>

source§

fn get_var_symbol_flags(&self) -> Result<Mat>

source§

fn get_response_type(&self) -> Result<i32>

source§

fn get_train_sample_idx(&self) -> Result<Mat>

source§

fn get_test_sample_idx(&self) -> Result<Mat>

source§

fn get_values( &self, vi: i32, sidx: &impl ToInputArray, values: &mut f32 ) -> Result<()>

source§

fn get_norm_cat_values( &self, vi: i32, sidx: &impl ToInputArray, values: &mut i32 ) -> Result<()>

source§

fn get_default_subst_values(&self) -> Result<Mat>

source§

fn get_cat_count(&self, vi: i32) -> Result<i32>

source§

fn get_class_labels(&self) -> Result<Mat>

Returns the vector of class labels Read more
source§

fn get_cat_ofs(&self) -> Result<Mat>

source§

fn get_cat_map(&self) -> Result<Mat>

source§

fn get_test_samples(&self) -> Result<Mat>

Returns matrix of test samples
source§

fn get_names(&self, names: &mut Vector<String>) -> Result<()>

Returns vector of symbolic names captured in loadFromCSV()
source§

impl TransientAreasSegmentationModuleTraitConst for BoxedRef<'_, TransientAreasSegmentationModule>

source§

fn as_raw_TransientAreasSegmentationModule( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &str) -> Result<()>

write xml/yml formated parameters information Read more
source§

fn write_to_storage(&self, fs: &mut impl FileStorageTrait) -> Result<()>

write xml/yml formated parameters information Read more
source§

impl TranslationBasedLocalOutlierRejectorTraitConst for BoxedRef<'_, TranslationBasedLocalOutlierRejector>

source§

fn as_raw_TranslationBasedLocalOutlierRejector( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn cell_size(&self) -> Result<Size>

source§

fn ransac_params(&self) -> Result<RansacParams>

source§

impl TransverseMercatorWarperTraitConst for BoxedRef<'_, TransverseMercatorWarper>

source§

fn as_raw_TransverseMercatorWarper( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl TwoPassStabilizerTraitConst for BoxedRef<'_, TwoPassStabilizer>

source§

impl UMatDataTraitConst for BoxedRef<'_, UMatData>

source§

fn as_raw_UMatData(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn urefcount(&self) -> i32

source§

fn refcount(&self) -> i32

source§

fn data(&self) -> *const u8

source§

fn origdata(&self) -> *const u8

source§

fn size(&self) -> size_t

source§

fn flags(&self) -> UMatData_MemoryFlag

source§

fn allocator_flags_(&self) -> i32

source§

fn mapcount(&self) -> i32

source§

fn host_copy_obsolete(&self) -> Result<bool>

source§

fn device_copy_obsolete(&self) -> Result<bool>

source§

fn device_mem_mapped(&self) -> Result<bool>

source§

fn copy_on_map(&self) -> Result<bool>

source§

fn temp_umat(&self) -> Result<bool>

source§

fn temp_copied_umat(&self) -> Result<bool>

source§

impl UMatTraitConst for BoxedRef<'_, UMat>

source§

fn as_raw_UMat(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn flags(&self) -> i32

! includes several bit-fields: Read more
source§

fn dims(&self) -> i32

the matrix dimensionality, >= 2
source§

fn rows(&self) -> i32

number of rows in the matrix; -1 when the matrix has more than 2 dimensions
source§

fn cols(&self) -> i32

number of columns in the matrix; -1 when the matrix has more than 2 dimensions
source§

fn usage_flags(&self) -> UMatUsageFlags

usage flags for allocator; recommend do not set directly, instead set during construct/create/getUMat
source§

fn offset(&self) -> size_t

offset of the submatrix (or 0)
source§

fn mat_size(&self) -> MatSize

dimensional size of the matrix; accessible in various formats
source§

fn mat_step(&self) -> MatStep

number of bytes each matrix element/row/plane/dimension occupies
source§

fn get_mat(&self, flags: AccessFlag) -> Result<Mat>

source§

fn row(&self, y: i32) -> Result<BoxedRef<'_, UMat>>

returns a new matrix header for the specified row
source§

fn col(&self, x: i32) -> Result<BoxedRef<'_, UMat>>

returns a new matrix header for the specified column
source§

fn row_bounds(&self, startrow: i32, endrow: i32) -> Result<BoxedRef<'_, UMat>>

… for the specified row span
source§

fn row_range(&self, r: &impl RangeTraitConst) -> Result<BoxedRef<'_, UMat>>

source§

fn col_bounds(&self, startcol: i32, endcol: i32) -> Result<BoxedRef<'_, UMat>>

… for the specified column span
source§

fn col_range(&self, r: &impl RangeTraitConst) -> Result<BoxedRef<'_, UMat>>

source§

fn diag(&self, d: i32) -> Result<BoxedRef<'_, UMat>>

… for the specified diagonal (d=0 - the main diagonal, >0 - a diagonal from the upper half, <0 - a diagonal from the lower half) Read more
source§

fn diag_def(&self) -> Result<BoxedRef<'_, UMat>>

… for the specified diagonal (d=0 - the main diagonal, >0 - a diagonal from the upper half, <0 - a diagonal from the lower half) Read more
source§

fn try_clone(&self) -> Result<UMat>

returns deep copy of the matrix, i.e. the data is copied
source§

fn copy_to(&self, m: &mut impl ToOutputArray) -> Result<()>

copies the matrix content to “m”.
source§

fn copy_to_masked( &self, m: &mut impl ToOutputArray, mask: &impl ToInputArray ) -> Result<()>

copies those matrix elements to “m” that are marked with non-zero mask elements.
source§

fn convert_to( &self, m: &mut impl ToOutputArray, rtype: i32, alpha: f64, beta: f64 ) -> Result<()>

converts matrix to another datatype with optional scaling. See cvConvertScale. Read more
source§

fn convert_to_def(&self, m: &mut impl ToOutputArray, rtype: i32) -> Result<()>

converts matrix to another datatype with optional scaling. See cvConvertScale. Read more
source§

fn assign_to(&self, m: &mut impl UMatTrait, typ: i32) -> Result<()>

C++ default parameters Read more
source§

fn assign_to_def(&self, m: &mut impl UMatTrait) -> Result<()>

source§

fn reshape(&self, cn: i32, rows: i32) -> Result<BoxedRef<'_, UMat>>

creates alternative matrix header for the same data, with different Read more
source§

fn reshape_def(&self, cn: i32) -> Result<BoxedRef<'_, UMat>>

creates alternative matrix header for the same data, with different Read more
source§

fn reshape_nd(&self, cn: i32, newsz: &[i32]) -> Result<BoxedRef<'_, UMat>>

source§

fn t(&self) -> Result<UMat>

matrix transposition by means of matrix expressions
source§

fn inv(&self, method: i32) -> Result<UMat>

matrix inversion by means of matrix expressions Read more
source§

fn inv_def(&self) -> Result<UMat>

matrix inversion by means of matrix expressions Read more
source§

fn mul(&self, m: &impl ToInputArray, scale: f64) -> Result<UMat>

per-element matrix multiplication by means of matrix expressions Read more
source§

fn mul_def(&self, m: &impl ToInputArray) -> Result<UMat>

per-element matrix multiplication by means of matrix expressions Read more
source§

fn dot(&self, m: &impl ToInputArray) -> Result<f64>

computes dot-product
source§

fn locate_roi(&self, whole_size: &mut Size, ofs: &mut Point) -> Result<()>

locates matrix header within a parent matrix. See below
source§

fn rowscols( &self, row_range: impl RangeTrait, col_range: impl RangeTrait ) -> Result<BoxedRef<'_, UMat>>

extracts a rectangular sub-matrix
source§

fn roi(&self, roi: Rect) -> Result<BoxedRef<'_, UMat>>

source§

fn ranges(&self, ranges: &Vector<Range>) -> Result<BoxedRef<'_, UMat>>

source§

fn is_continuous(&self) -> bool

returns true iff the matrix data is continuous
source§

fn is_submatrix(&self) -> bool

returns true if the matrix is a submatrix of another matrix
source§

fn elem_size(&self) -> Result<size_t>

returns element size in bytes,
source§

fn elem_size1(&self) -> size_t

returns the size of element channel in bytes.
source§

fn typ(&self) -> i32

returns element type, similar to CV_MAT_TYPE(cvmat->type)
source§

fn depth(&self) -> i32

returns element type, similar to CV_MAT_DEPTH(cvmat->type)
source§

fn channels(&self) -> i32

returns element type, similar to CV_MAT_CN(cvmat->type)
source§

fn step1(&self, i: i32) -> Result<size_t>

returns step/elemSize1() Read more
source§

fn step1_def(&self) -> Result<size_t>

returns step/elemSize1() Read more
source§

fn empty(&self) -> bool

returns true if matrix data is NULL
source§

fn total(&self) -> size_t

returns the total number of matrix elements
source§

fn check_vector( &self, elem_channels: i32, depth: i32, require_continuous: bool ) -> Result<i32>

returns N if the matrix is 1-channel (N x ptdim) or ptdim-channel (1 x N) or (N x 1); negative number otherwise Read more
source§

fn check_vector_def(&self, elem_channels: i32) -> Result<i32>

returns N if the matrix is 1-channel (N x ptdim) or ptdim-channel (1 x N) or (N x 1); negative number otherwise Read more
source§

fn handle(&self, access_flags: AccessFlag) -> Result<*mut c_void>

! Returns the OpenCL buffer handle on which UMat operates on. The UMat instance should be kept alive during the use of the handle to prevent the buffer to be returned to the OpenCV buffer pool.
source§

fn ndoffset(&self, ofs: &mut size_t) -> Result<()>

source§

fn size(&self) -> Result<Size>

source§

impl VGGTraitConst for BoxedRef<'_, VGG>

source§

impl VariationalRefinementTraitConst for BoxedRef<'_, VariationalRefinement>

source§

fn as_raw_VariationalRefinement( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_fixed_point_iterations(&self) -> Result<i32>

Number of outer (fixed-point) iterations in the minimization procedure. Read more
source§

fn get_sor_iterations(&self) -> Result<i32>

Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system. Read more
source§

fn get_omega(&self) -> Result<f32>

Relaxation factor in SOR Read more
source§

fn get_alpha(&self) -> Result<f32>

Weight of the smoothness term Read more
source§

fn get_delta(&self) -> Result<f32>

Weight of the color constancy term Read more
source§

fn get_gamma(&self) -> Result<f32>

Weight of the gradient constancy term Read more
source§

impl VideoCaptureTraitConst for BoxedRef<'_, VideoCapture>

source§

fn as_raw_VideoCapture(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_opened(&self) -> Result<bool>

Returns true if video capturing has been initialized already. Read more
source§

fn get(&self, prop_id: i32) -> Result<f64>

Returns the specified VideoCapture property Read more
source§

fn get_backend_name(&self) -> Result<String>

Returns used backend API name Read more
source§

impl VideoFileSourceTraitConst for BoxedRef<'_, VideoFileSource>

source§

fn as_raw_VideoFileSource( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl VideoWriterTraitConst for BoxedRef<'_, VideoWriter>

source§

fn as_raw_VideoWriter(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn is_opened(&self) -> Result<bool>

Returns true if video writer has been successfully initialized.
source§

fn get(&self, prop_id: i32) -> Result<f64>

Returns the specified VideoWriter property Read more
source§

fn get_backend_name(&self) -> Result<String>

Returns used backend API name Read more
source§

impl Viz3dTraitConst for BoxedRef<'_, Viz3d>

source§

fn as_raw_Viz3d(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_widget(&self, id: &str) -> Result<Widget>

Retrieves a widget from the window. Read more
source§

fn get_widget_pose(&self, id: &str) -> Result<Affine3d>

Returns the current pose of a widget in the window. Read more
source§

fn get_camera(&self) -> Result<Camera>

Returns a camera object that contains intrinsic parameters of the current viewer.
source§

fn get_viewer_pose(&self) -> Result<Affine3d>

Returns the current pose of the viewer.
source§

fn get_window_size(&self) -> Result<Size>

Returns the current size of the window.
source§

fn get_window_name(&self) -> Result<String>

Returns the name of the window which has been set in the constructor. Viz - is prepended to the name if necessary.
source§

fn get_screenshot(&self) -> Result<Mat>

Returns the Mat screenshot of the current scene.
source§

fn was_stopped(&self) -> Result<bool>

Returns whether the event loop has been stopped.
source§

impl WArrowTraitConst for BoxedRef<'_, WArrow>

source§

fn as_raw_WArrow(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WBDetectorTraitConst for BoxedRef<'_, WBDetector>

source§

fn as_raw_WBDetector(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>

Write detector to FileStorage. Read more
source§

impl WCameraPositionTraitConst for BoxedRef<'_, WCameraPosition>

source§

fn as_raw_WCameraPosition( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCircleTraitConst for BoxedRef<'_, WCircle>

source§

fn as_raw_WCircle(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCloudCollectionTraitConst for BoxedRef<'_, WCloudCollection>

source§

fn as_raw_WCloudCollection( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCloudNormalsTraitConst for BoxedRef<'_, WCloudNormals>

source§

fn as_raw_WCloudNormals( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCloudTraitConst for BoxedRef<'_, WCloud>

source§

fn as_raw_WCloud(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WConeTraitConst for BoxedRef<'_, WCone>

source§

fn as_raw_WCone(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCoordinateSystemTraitConst for BoxedRef<'_, WCoordinateSystem>

source§

fn as_raw_WCoordinateSystem( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCubeTraitConst for BoxedRef<'_, WCube>

source§

fn as_raw_WCube(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WCylinderTraitConst for BoxedRef<'_, WCylinder>

source§

fn as_raw_WCylinder(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WGridTraitConst for BoxedRef<'_, WGrid>

source§

fn as_raw_WGrid(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WImage3DTraitConst for BoxedRef<'_, WImage3D>

source§

fn as_raw_WImage3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WImageOverlayTraitConst for BoxedRef<'_, WImageOverlay>

source§

fn as_raw_WImageOverlay( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WLineTraitConst for BoxedRef<'_, WLine>

source§

fn as_raw_WLine(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WMeshTraitConst for BoxedRef<'_, WMesh>

source§

fn as_raw_WMesh(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WPaintedCloudTraitConst for BoxedRef<'_, WPaintedCloud>

source§

fn as_raw_WPaintedCloud( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WPlaneTraitConst for BoxedRef<'_, WPlane>

source§

fn as_raw_WPlane(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WPolyLineTraitConst for BoxedRef<'_, WPolyLine>

source§

fn as_raw_WPolyLine(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WSphereTraitConst for BoxedRef<'_, WSphere>

source§

fn as_raw_WSphere(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WText3DTraitConst for BoxedRef<'_, WText3D>

source§

fn as_raw_WText3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_text(&self) -> Result<String>

Returns the current text content of the widget.
source§

impl WTextTraitConst for BoxedRef<'_, WText>

source§

fn as_raw_WText(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_text(&self) -> Result<String>

Returns the current text content of the widget.
source§

impl WTrajectoryFrustumsTraitConst for BoxedRef<'_, WTrajectoryFrustums>

source§

fn as_raw_WTrajectoryFrustums( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WTrajectorySpheresTraitConst for BoxedRef<'_, WTrajectorySpheres>

source§

fn as_raw_WTrajectorySpheres( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WTrajectoryTraitConst for BoxedRef<'_, WTrajectory>

source§

fn as_raw_WTrajectory(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WWidgetMergerTraitConst for BoxedRef<'_, WWidgetMerger>

source§

fn as_raw_WWidgetMerger( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WarperCreatorTraitConst for BoxedRef<'_, AffineWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, CompressedRectilinearPortraitWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, CompressedRectilinearWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, CylindricalWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, CylindricalWarperGpu>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, FisheyeWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, MercatorWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, PaniniPortraitWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, PaniniWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, PlaneWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, PlaneWarperGpu>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, SphericalWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, SphericalWarperGpu>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, StereographicWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, TransverseMercatorWarper>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WarperCreatorTraitConst for BoxedRef<'_, WarperCreator>

source§

fn as_raw_WarperCreator( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn create(&self, scale: f32) -> Result<Ptr<Detail_RotationWarper>>

source§

impl WeChatQRCodeTraitConst for BoxedRef<'_, WeChatQRCode>

source§

fn as_raw_WeChatQRCode(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WeightingDeblurerTraitConst for BoxedRef<'_, WeightingDeblurer>

source§

fn as_raw_WeightingDeblurer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn sensitivity(&self) -> Result<f32>

source§

impl WhiteBalancerTraitConst for BoxedRef<'_, GrayworldWB>

source§

fn as_raw_WhiteBalancer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WhiteBalancerTraitConst for BoxedRef<'_, LearningBasedWB>

source§

fn as_raw_WhiteBalancer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WhiteBalancerTraitConst for BoxedRef<'_, SimpleWB>

source§

fn as_raw_WhiteBalancer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WhiteBalancerTraitConst for BoxedRef<'_, WhiteBalancer>

source§

fn as_raw_WhiteBalancer( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Widget2DTraitConst for BoxedRef<'_, WImageOverlay>

source§

fn as_raw_Widget2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Widget2DTraitConst for BoxedRef<'_, WText>

source§

fn as_raw_Widget2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Widget2DTraitConst for BoxedRef<'_, Widget2D>

source§

fn as_raw_Widget2D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl Widget3DTraitConst for BoxedRef<'_, WArrow>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCameraPosition>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCircle>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCloud>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCloudCollection>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCloudNormals>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCone>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCoordinateSystem>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCube>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WCylinder>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WGrid>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WImage3D>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WLine>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WMesh>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WPaintedCloud>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WPlane>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WPolyLine>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WSphere>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WText3D>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WTrajectory>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WTrajectoryFrustums>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WTrajectorySpheres>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, WWidgetMerger>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl Widget3DTraitConst for BoxedRef<'_, Widget3D>

source§

fn as_raw_Widget3D(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.
source§

impl WidgetTraitConst for BoxedRef<'_, WArrow>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCameraPosition>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCircle>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCloud>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCloudCollection>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCloudNormals>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCone>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCoordinateSystem>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCube>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WCylinder>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WGrid>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WImage3D>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WImageOverlay>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WLine>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WMesh>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WPaintedCloud>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WPlane>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WPolyLine>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WSphere>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WText>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WText3D>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WTrajectory>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WTrajectoryFrustums>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WTrajectorySpheres>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, WWidgetMerger>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, Widget>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, Widget2D>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WidgetTraitConst for BoxedRef<'_, Widget3D>

source§

fn as_raw_Widget(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_rendering_property(&self, property: i32) -> Result<f64>

Returns rendering property of the widget. Read more
source§

impl WindowSceneTraitConst for BoxedRef<'_, WindowScene>

source§

fn as_raw_WindowScene(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl WobbleSuppressorBaseTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressor>

source§

fn as_raw_WobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_estimator(&self) -> Result<Ptr<ImageMotionEstimatorBase>>

source§

fn frame_count(&self) -> Result<i32>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn motions2(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl WobbleSuppressorBaseTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressorBase>

source§

fn as_raw_WobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_estimator(&self) -> Result<Ptr<ImageMotionEstimatorBase>>

source§

fn frame_count(&self) -> Result<i32>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn motions2(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl WobbleSuppressorBaseTraitConst for BoxedRef<'_, MoreAccurateMotionWobbleSuppressorGpu>

source§

fn as_raw_WobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_estimator(&self) -> Result<Ptr<ImageMotionEstimatorBase>>

source§

fn frame_count(&self) -> Result<i32>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn motions2(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl WobbleSuppressorBaseTraitConst for BoxedRef<'_, NullWobbleSuppressor>

source§

fn as_raw_WobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_estimator(&self) -> Result<Ptr<ImageMotionEstimatorBase>>

source§

fn frame_count(&self) -> Result<i32>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn motions2(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl WobbleSuppressorBaseTraitConst for BoxedRef<'_, WobbleSuppressorBase>

source§

fn as_raw_WobbleSuppressorBase( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn motion_estimator(&self) -> Result<Ptr<ImageMotionEstimatorBase>>

source§

fn frame_count(&self) -> Result<i32>

source§

fn motions(&self) -> Result<Vector<Mat>>

source§

fn motions2(&self) -> Result<Vector<Mat>>

source§

fn stabilization_motions(&self) -> Result<Vector<Mat>>

source§

impl WriteStructContextTraitConst for BoxedRef<'_, WriteStructContext>

source§

fn as_raw_WriteStructContext( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl _InputArrayTraitConst for BoxedRef<'_, _InputArray>

source§

fn as_raw__InputArray(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_mat(&self, idx: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat_def(&self) -> Result<Mat>

source§

fn get_mat_(&self, idx: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat__def(&self) -> Result<Mat>

source§

fn get_umat(&self, idx: i32) -> Result<UMat>

C++ default parameters Read more
source§

fn get_umat_def(&self) -> Result<UMat>

source§

fn get_mat_vector(&self, mv: &mut Vector<Mat>) -> Result<()>

source§

fn get_umat_vector(&self, umv: &mut Vector<UMat>) -> Result<()>

source§

fn get_gpu_mat_vector(&self, gpumv: &mut Vector<GpuMat>) -> Result<()>

source§

fn get_gpu_mat(&self) -> Result<GpuMat>

source§

fn get_o_gl_buffer(&self) -> Result<Buffer>

source§

fn get_flags(&self) -> Result<i32>

source§

fn get_obj(&self) -> Result<*mut c_void>

source§

fn get_sz(&self) -> Result<Size>

source§

fn kind(&self) -> Result<_InputArray_KindFlag>

source§

fn dims(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn dims_def(&self) -> Result<i32>

source§

fn cols(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn cols_def(&self) -> Result<i32>

source§

fn rows(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn rows_def(&self) -> Result<i32>

source§

fn size(&self, i: i32) -> Result<Size>

C++ default parameters Read more
source§

fn size_def(&self) -> Result<Size>

source§

fn sizend(&self, sz: &mut i32, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn sizend_def(&self, sz: &mut i32) -> Result<i32>

source§

fn same_size(&self, arr: &impl ToInputArray) -> Result<bool>

source§

fn total(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn total_def(&self) -> Result<size_t>

source§

fn typ(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn typ_def(&self) -> Result<i32>

source§

fn depth(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn depth_def(&self) -> Result<i32>

source§

fn channels(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn channels_def(&self) -> Result<i32>

source§

fn is_continuous(&self, i: i32) -> Result<bool>

C++ default parameters Read more
source§

fn is_continuous_def(&self) -> Result<bool>

source§

fn is_submatrix(&self, i: i32) -> Result<bool>

C++ default parameters Read more
source§

fn is_submatrix_def(&self) -> Result<bool>

source§

fn empty(&self) -> Result<bool>

source§

fn copy_to(&self, arr: &mut impl ToOutputArray) -> Result<()>

source§

fn copy_to_masked( &self, arr: &mut impl ToOutputArray, mask: &impl ToInputArray ) -> Result<()>

source§

fn offset(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn offset_def(&self) -> Result<size_t>

source§

fn step(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn step_def(&self) -> Result<size_t>

source§

fn is_mat(&self) -> Result<bool>

source§

fn is_umat(&self) -> Result<bool>

source§

fn is_mat_vector(&self) -> Result<bool>

source§

fn is_umat_vector(&self) -> Result<bool>

source§

fn is_matx(&self) -> Result<bool>

source§

fn is_vector(&self) -> Result<bool>

source§

fn is_gpu_mat(&self) -> Result<bool>

source§

fn is_gpu_mat_vector(&self) -> Result<bool>

source§

impl _InputArrayTraitConst for BoxedRef<'_, _InputOutputArray>

source§

fn as_raw__InputArray(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_mat(&self, idx: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat_def(&self) -> Result<Mat>

source§

fn get_mat_(&self, idx: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat__def(&self) -> Result<Mat>

source§

fn get_umat(&self, idx: i32) -> Result<UMat>

C++ default parameters Read more
source§

fn get_umat_def(&self) -> Result<UMat>

source§

fn get_mat_vector(&self, mv: &mut Vector<Mat>) -> Result<()>

source§

fn get_umat_vector(&self, umv: &mut Vector<UMat>) -> Result<()>

source§

fn get_gpu_mat_vector(&self, gpumv: &mut Vector<GpuMat>) -> Result<()>

source§

fn get_gpu_mat(&self) -> Result<GpuMat>

source§

fn get_o_gl_buffer(&self) -> Result<Buffer>

source§

fn get_flags(&self) -> Result<i32>

source§

fn get_obj(&self) -> Result<*mut c_void>

source§

fn get_sz(&self) -> Result<Size>

source§

fn kind(&self) -> Result<_InputArray_KindFlag>

source§

fn dims(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn dims_def(&self) -> Result<i32>

source§

fn cols(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn cols_def(&self) -> Result<i32>

source§

fn rows(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn rows_def(&self) -> Result<i32>

source§

fn size(&self, i: i32) -> Result<Size>

C++ default parameters Read more
source§

fn size_def(&self) -> Result<Size>

source§

fn sizend(&self, sz: &mut i32, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn sizend_def(&self, sz: &mut i32) -> Result<i32>

source§

fn same_size(&self, arr: &impl ToInputArray) -> Result<bool>

source§

fn total(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn total_def(&self) -> Result<size_t>

source§

fn typ(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn typ_def(&self) -> Result<i32>

source§

fn depth(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn depth_def(&self) -> Result<i32>

source§

fn channels(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn channels_def(&self) -> Result<i32>

source§

fn is_continuous(&self, i: i32) -> Result<bool>

C++ default parameters Read more
source§

fn is_continuous_def(&self) -> Result<bool>

source§

fn is_submatrix(&self, i: i32) -> Result<bool>

C++ default parameters Read more
source§

fn is_submatrix_def(&self) -> Result<bool>

source§

fn empty(&self) -> Result<bool>

source§

fn copy_to(&self, arr: &mut impl ToOutputArray) -> Result<()>

source§

fn copy_to_masked( &self, arr: &mut impl ToOutputArray, mask: &impl ToInputArray ) -> Result<()>

source§

fn offset(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn offset_def(&self) -> Result<size_t>

source§

fn step(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn step_def(&self) -> Result<size_t>

source§

fn is_mat(&self) -> Result<bool>

source§

fn is_umat(&self) -> Result<bool>

source§

fn is_mat_vector(&self) -> Result<bool>

source§

fn is_umat_vector(&self) -> Result<bool>

source§

fn is_matx(&self) -> Result<bool>

source§

fn is_vector(&self) -> Result<bool>

source§

fn is_gpu_mat(&self) -> Result<bool>

source§

fn is_gpu_mat_vector(&self) -> Result<bool>

source§

impl _InputArrayTraitConst for BoxedRef<'_, _OutputArray>

source§

fn as_raw__InputArray(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn get_mat(&self, idx: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat_def(&self) -> Result<Mat>

source§

fn get_mat_(&self, idx: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat__def(&self) -> Result<Mat>

source§

fn get_umat(&self, idx: i32) -> Result<UMat>

C++ default parameters Read more
source§

fn get_umat_def(&self) -> Result<UMat>

source§

fn get_mat_vector(&self, mv: &mut Vector<Mat>) -> Result<()>

source§

fn get_umat_vector(&self, umv: &mut Vector<UMat>) -> Result<()>

source§

fn get_gpu_mat_vector(&self, gpumv: &mut Vector<GpuMat>) -> Result<()>

source§

fn get_gpu_mat(&self) -> Result<GpuMat>

source§

fn get_o_gl_buffer(&self) -> Result<Buffer>

source§

fn get_flags(&self) -> Result<i32>

source§

fn get_obj(&self) -> Result<*mut c_void>

source§

fn get_sz(&self) -> Result<Size>

source§

fn kind(&self) -> Result<_InputArray_KindFlag>

source§

fn dims(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn dims_def(&self) -> Result<i32>

source§

fn cols(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn cols_def(&self) -> Result<i32>

source§

fn rows(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn rows_def(&self) -> Result<i32>

source§

fn size(&self, i: i32) -> Result<Size>

C++ default parameters Read more
source§

fn size_def(&self) -> Result<Size>

source§

fn sizend(&self, sz: &mut i32, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn sizend_def(&self, sz: &mut i32) -> Result<i32>

source§

fn same_size(&self, arr: &impl ToInputArray) -> Result<bool>

source§

fn total(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn total_def(&self) -> Result<size_t>

source§

fn typ(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn typ_def(&self) -> Result<i32>

source§

fn depth(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn depth_def(&self) -> Result<i32>

source§

fn channels(&self, i: i32) -> Result<i32>

C++ default parameters Read more
source§

fn channels_def(&self) -> Result<i32>

source§

fn is_continuous(&self, i: i32) -> Result<bool>

C++ default parameters Read more
source§

fn is_continuous_def(&self) -> Result<bool>

source§

fn is_submatrix(&self, i: i32) -> Result<bool>

C++ default parameters Read more
source§

fn is_submatrix_def(&self) -> Result<bool>

source§

fn empty(&self) -> Result<bool>

source§

fn copy_to(&self, arr: &mut impl ToOutputArray) -> Result<()>

source§

fn copy_to_masked( &self, arr: &mut impl ToOutputArray, mask: &impl ToInputArray ) -> Result<()>

source§

fn offset(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn offset_def(&self) -> Result<size_t>

source§

fn step(&self, i: i32) -> Result<size_t>

C++ default parameters Read more
source§

fn step_def(&self) -> Result<size_t>

source§

fn is_mat(&self) -> Result<bool>

source§

fn is_umat(&self) -> Result<bool>

source§

fn is_mat_vector(&self) -> Result<bool>

source§

fn is_umat_vector(&self) -> Result<bool>

source§

fn is_matx(&self) -> Result<bool>

source§

fn is_vector(&self) -> Result<bool>

source§

fn is_gpu_mat(&self) -> Result<bool>

source§

fn is_gpu_mat_vector(&self) -> Result<bool>

source§

impl _InputOutputArrayTraitConst for BoxedRef<'_, _InputOutputArray>

source§

fn as_raw__InputOutputArray( &self ) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl _OutputArrayTraitConst for BoxedRef<'_, _InputOutputArray>

source§

fn as_raw__OutputArray(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn fixed_size(&self) -> Result<bool>

source§

fn fixed_type(&self) -> Result<bool>

source§

fn needed(&self) -> Result<bool>

source§

fn get_mat_ref(&self, i: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat_ref_def(&self) -> Result<Mat>

source§

fn get_umat_ref(&self, i: i32) -> Result<UMat>

C++ default parameters Read more
source§

fn get_umat_ref_def(&self) -> Result<UMat>

source§

fn get_gpu_mat_ref(&self) -> Result<GpuMat>

source§

fn get_gpu_mat_vec_ref(&self) -> Result<Vector<GpuMat>>

source§

fn get_o_gl_buffer_ref(&self) -> Result<Buffer>

source§

fn get_host_mem_ref(&self) -> Result<HostMem>

source§

fn create_size( &self, sz: Size, typ: i32, i: i32, allow_transposed: bool, fixed_depth_mask: _OutputArray_DepthMask ) -> Result<()>

C++ default parameters Read more
source§

fn create_size_def(&self, sz: Size, typ: i32) -> Result<()>

source§

fn create( &self, rows: i32, cols: i32, typ: i32, i: i32, allow_transposed: bool, fixed_depth_mask: _OutputArray_DepthMask ) -> Result<()>

C++ default parameters Read more
source§

fn create_def(&self, rows: i32, cols: i32, typ: i32) -> Result<()>

source§

fn create_nd( &self, size: &[i32], typ: i32, i: i32, allow_transposed: bool, fixed_depth_mask: _OutputArray_DepthMask ) -> Result<()>

C++ default parameters Read more
source§

fn create_nd_def(&self, size: &[i32], typ: i32) -> Result<()>

source§

unsafe fn create_same_size( &self, arr: &impl ToInputArray, mtype: i32 ) -> Result<()>

source§

fn release(&self) -> Result<()>

source§

fn clear(&self) -> Result<()>

source§

fn set_to( &self, value: &impl ToInputArray, mask: &impl ToInputArray ) -> Result<()>

C++ default parameters Read more
source§

fn set_to_def(&self, value: &impl ToInputArray) -> Result<()>

source§

fn assign_umat(&self, u: &impl UMatTraitConst) -> Result<()>

source§

fn assign_mat(&self, m: &impl MatTraitConst) -> Result<()>

source§

fn assign_umat_vec(&self, v: &Vector<UMat>) -> Result<()>

source§

fn assign_mat_vec(&self, v: &Vector<Mat>) -> Result<()>

source§

fn move_umat(&self, u: &mut impl UMatTrait) -> Result<()>

source§

fn move_mat(&self, m: &mut impl MatTrait) -> Result<()>

source§

impl _OutputArrayTraitConst for BoxedRef<'_, _OutputArray>

source§

fn as_raw__OutputArray(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn fixed_size(&self) -> Result<bool>

source§

fn fixed_type(&self) -> Result<bool>

source§

fn needed(&self) -> Result<bool>

source§

fn get_mat_ref(&self, i: i32) -> Result<Mat>

C++ default parameters Read more
source§

fn get_mat_ref_def(&self) -> Result<Mat>

source§

fn get_umat_ref(&self, i: i32) -> Result<UMat>

C++ default parameters Read more
source§

fn get_umat_ref_def(&self) -> Result<UMat>

source§

fn get_gpu_mat_ref(&self) -> Result<GpuMat>

source§

fn get_gpu_mat_vec_ref(&self) -> Result<Vector<GpuMat>>

source§

fn get_o_gl_buffer_ref(&self) -> Result<Buffer>

source§

fn get_host_mem_ref(&self) -> Result<HostMem>

source§

fn create_size( &self, sz: Size, typ: i32, i: i32, allow_transposed: bool, fixed_depth_mask: _OutputArray_DepthMask ) -> Result<()>

C++ default parameters Read more
source§

fn create_size_def(&self, sz: Size, typ: i32) -> Result<()>

source§

fn create( &self, rows: i32, cols: i32, typ: i32, i: i32, allow_transposed: bool, fixed_depth_mask: _OutputArray_DepthMask ) -> Result<()>

C++ default parameters Read more
source§

fn create_def(&self, rows: i32, cols: i32, typ: i32) -> Result<()>

source§

fn create_nd( &self, size: &[i32], typ: i32, i: i32, allow_transposed: bool, fixed_depth_mask: _OutputArray_DepthMask ) -> Result<()>

C++ default parameters Read more
source§

fn create_nd_def(&self, size: &[i32], typ: i32) -> Result<()>

source§

unsafe fn create_same_size( &self, arr: &impl ToInputArray, mtype: i32 ) -> Result<()>

source§

fn release(&self) -> Result<()>

source§

fn clear(&self) -> Result<()>

source§

fn set_to( &self, value: &impl ToInputArray, mask: &impl ToInputArray ) -> Result<()>

C++ default parameters Read more
source§

fn set_to_def(&self, value: &impl ToInputArray) -> Result<()>

source§

fn assign_umat(&self, u: &impl UMatTraitConst) -> Result<()>

source§

fn assign_mat(&self, m: &impl MatTraitConst) -> Result<()>

source§

fn assign_umat_vec(&self, v: &Vector<UMat>) -> Result<()>

source§

fn assign_mat_vec(&self, v: &Vector<Mat>) -> Result<()>

source§

fn move_umat(&self, u: &mut impl UMatTrait) -> Result<()>

source§

fn move_mat(&self, m: &mut impl MatTrait) -> Result<()>

source§

impl _RangeTraitConst for BoxedRef<'_, _Range>

source§

fn as_raw__Range(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl anyTraitConst for BoxedRef<'_, any>

source§

fn as_raw_any(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

impl use_onlyTraitConst for BoxedRef<'_, use_only>

source§

fn as_raw_use_only(&self) -> <Self as OpenCVTypeExternContainer>::ExternSend

source§

fn pkg(&self) -> GKernelPackage

Auto Trait Implementations§

§

impl<'r, T> Freeze for BoxedRef<'r, T>
where T: Freeze,

§

impl<'r, T> RefUnwindSafe for BoxedRef<'r, T>
where T: RefUnwindSafe,

§

impl<'r, T> Send for BoxedRef<'r, T>
where T: Send + Sync,

§

impl<'r, T> Sync for BoxedRef<'r, T>
where T: Sync,

§

impl<'r, T> Unpin for BoxedRef<'r, T>
where T: Unpin,

§

impl<'r, T> UnwindSafe for BoxedRef<'r, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> MatTraitConstManual for T
where T: MatTraitConst + ?Sized,

source§

unsafe fn at_unchecked<T: DataType>(&self, i0: i32) -> Result<&T>

Like Mat::at() but performs no bounds or type checks Read more
source§

unsafe fn at_2d_unchecked<T: DataType>(&self, row: i32, col: i32) -> Result<&T>

Like Mat::at_2d() but performs no bounds or type checks Read more
source§

unsafe fn at_pt_unchecked<T: DataType>(&self, pt: Point) -> Result<&T>

Like Mat::at_pt() but performs no bounds or type checks Read more
source§

unsafe fn at_3d_unchecked<T: DataType>( &self, i0: i32, i1: i32, i2: i32 ) -> Result<&T>

Like Mat::at_3d() but performs no bounds or type checks Read more
source§

unsafe fn at_nd_unchecked<T: DataType>(&self, idx: &[i32]) -> Result<&T>

Like Mat::at_nd() but performs no bounds or type checks Read more
source§

fn at_row<T: DataType>(&self, row: i32) -> Result<&[T]>

Return a complete read-only row
source§

unsafe fn at_row_unchecked<T: DataType>(&self, row: i32) -> Result<&[T]>

Like Mat::at_row() but performs no bounds or type checks Read more
source§

fn is_allocated(&self) -> bool

source§

fn data_bytes(&self) -> Result<&[u8]>

Returns underlying data array as byte slice, Mat must be continuous
source§

fn data_typed<T: DataType>(&self) -> Result<&[T]>

source§

unsafe fn data_typed_unchecked<T: DataType>(&self) -> Result<&[T]>

Safety Read more
source§

fn to_vec_2d<T: DataType>(&self) -> Result<Vec<Vec<T>>>

source§

fn iter<T: DataType>(&self) -> Result<MatIter<'_, T>>
where Self: Sized,

Returns an iterator over Mat elements and their positions
source§

fn try_into_typed<T: DataType>(self) -> Result<Mat_<T>>
where Self: Sized, Mat_<T>: TryFrom<Self, Error = Error>,

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.