Struct opencv::flann::LinearIndexParams
source · [−]pub struct LinearIndexParams { /* private fields */ }
Implementations
sourceimpl LinearIndexParams
impl LinearIndexParams
pub fn default() -> Result<LinearIndexParams>
Trait Implementations
sourceimpl Boxed for LinearIndexParams
impl Boxed for LinearIndexParams
sourceimpl Drop for LinearIndexParams
impl Drop for LinearIndexParams
sourceimpl From<LinearIndexParams> for IndexParams
impl From<LinearIndexParams> for IndexParams
sourcefn from(s: LinearIndexParams) -> Self
fn from(s: LinearIndexParams) -> Self
Converts to this type from the input type.
sourceimpl IndexParamsTrait for LinearIndexParams
impl IndexParamsTrait for LinearIndexParams
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<()>
sourceimpl IndexParamsTraitConst for LinearIndexParams
impl IndexParamsTraitConst for LinearIndexParams
fn as_raw_IndexParams(&self) -> *const c_void
sourcefn 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
sourcefn 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<()>
sourceimpl LinearIndexParamsTrait for LinearIndexParams
impl LinearIndexParamsTrait for LinearIndexParams
fn as_raw_mut_LinearIndexParams(&mut self) -> *mut c_void
sourceimpl LinearIndexParamsTraitConst for LinearIndexParams
impl LinearIndexParamsTraitConst for LinearIndexParams
fn as_raw_LinearIndexParams(&self) -> *const c_void
impl Send for LinearIndexParams
Auto Trait Implementations
impl RefUnwindSafe for LinearIndexParams
impl !Sync for LinearIndexParams
impl Unpin for LinearIndexParams
impl UnwindSafe for LinearIndexParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more