Struct opencv::flann::CompositeIndexParams
source · pub struct CompositeIndexParams { /* private fields */ }
Implementations§
source§impl CompositeIndexParams
impl CompositeIndexParams
sourcepub fn new(
trees: i32,
branching: i32,
iterations: i32,
centers_init: flann_centers_init_t,
cb_index: f32
) -> Result<CompositeIndexParams>
pub fn new( trees: i32, branching: i32, iterations: i32, centers_init: flann_centers_init_t, cb_index: f32 ) -> Result<CompositeIndexParams>
C++ default parameters
- trees: 4
- branching: 32
- iterations: 11
- centers_init: cvflann::FLANN_CENTERS_RANDOM
- cb_index: 0.2f
Trait Implementations§
source§impl Boxed for CompositeIndexParams
impl Boxed for CompositeIndexParams
source§impl CompositeIndexParamsTrait for CompositeIndexParams
impl CompositeIndexParamsTrait for CompositeIndexParams
fn as_raw_mut_CompositeIndexParams(&mut self) -> *mut c_void
source§impl CompositeIndexParamsTraitConst for CompositeIndexParams
impl CompositeIndexParamsTraitConst for CompositeIndexParams
fn as_raw_CompositeIndexParams(&self) -> *const c_void
source§impl Drop for CompositeIndexParams
impl Drop for CompositeIndexParams
source§impl From<CompositeIndexParams> for IndexParams
impl From<CompositeIndexParams> for IndexParams
source§fn from(s: CompositeIndexParams) -> Self
fn from(s: CompositeIndexParams) -> Self
Converts to this type from the input type.
source§impl IndexParamsTrait for CompositeIndexParams
impl IndexParamsTrait for CompositeIndexParams
fn as_raw_mut_IndexParams(&mut self) -> *mut c_void
fn params(&mut self) -> *mut c_void
unsafe fn set_params(&mut self, val: *mut c_void)
fn set_string(&mut self, key: &str, value: &str) -> Result<()>
fn set_int(&mut self, key: &str, value: i32) -> Result<()>
fn set_double(&mut self, key: &str, value: f64) -> Result<()>
fn set_float(&mut self, key: &str, value: f32) -> Result<()>
fn set_bool(&mut self, key: &str, value: bool) -> Result<()>
fn set_algorithm(&mut self, value: i32) -> Result<()>
source§impl IndexParamsTraitConst for CompositeIndexParams
impl IndexParamsTraitConst for CompositeIndexParams
fn as_raw_IndexParams(&self) -> *const c_void
source§fn get_string(&self, key: &str, default_val: &str) -> Result<String>
fn get_string(&self, key: &str, default_val: &str) -> Result<String>
C++ default parameters Read more
source§fn get_int(&self, key: &str, default_val: i32) -> Result<i32>
fn get_int(&self, key: &str, default_val: i32) -> Result<i32>
C++ default parameters Read more
source§fn get_double(&self, key: &str, default_val: f64) -> Result<f64>
fn get_double(&self, key: &str, default_val: f64) -> Result<f64>
C++ default parameters Read more
fn get_all( &self, names: &mut Vector<String>, types: &mut Vector<FlannIndexType>, str_values: &mut Vector<String>, num_values: &mut Vector<f64> ) -> Result<()>
impl Send for CompositeIndexParams
Auto Trait Implementations§
impl RefUnwindSafe for CompositeIndexParams
impl !Sync for CompositeIndexParams
impl Unpin for CompositeIndexParams
impl UnwindSafe for CompositeIndexParams
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more