Struct opencv::flann::KDTreeIndexParams
source · pub struct KDTreeIndexParams { /* private fields */ }
Implementations§
source§impl KDTreeIndexParams
impl KDTreeIndexParams
sourcepub fn new(trees: i32) -> Result<KDTreeIndexParams>
pub fn new(trees: i32) -> Result<KDTreeIndexParams>
C++ default parameters
- trees: 4
Trait Implementations§
source§impl Boxed for KDTreeIndexParams
impl Boxed for KDTreeIndexParams
source§impl Drop for KDTreeIndexParams
impl Drop for KDTreeIndexParams
source§impl From<KDTreeIndexParams> for IndexParams
impl From<KDTreeIndexParams> for IndexParams
source§fn from(s: KDTreeIndexParams) -> Self
fn from(s: KDTreeIndexParams) -> Self
Converts to this type from the input type.
source§impl IndexParamsTrait for KDTreeIndexParams
impl IndexParamsTrait for KDTreeIndexParams
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 KDTreeIndexParams
impl IndexParamsTraitConst for KDTreeIndexParams
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<()>
source§impl KDTreeIndexParamsTrait for KDTreeIndexParams
impl KDTreeIndexParamsTrait for KDTreeIndexParams
fn as_raw_mut_KDTreeIndexParams(&mut self) -> *mut c_void
source§impl KDTreeIndexParamsTraitConst for KDTreeIndexParams
impl KDTreeIndexParamsTraitConst for KDTreeIndexParams
fn as_raw_KDTreeIndexParams(&self) -> *const c_void
impl Send for KDTreeIndexParams
Auto Trait Implementations§
impl RefUnwindSafe for KDTreeIndexParams
impl !Sync for KDTreeIndexParams
impl Unpin for KDTreeIndexParams
impl UnwindSafe for KDTreeIndexParams
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