pub trait CUDA_ORBTraitConst: CUDA_Feature2DAsyncTraitConst {
// Required method
fn as_raw_CUDA_ORB(&self) -> *const c_void;
// Provided methods
fn get_max_features(&self) -> Result<i32> { ... }
fn get_scale_factor(&self) -> Result<f64> { ... }
fn get_n_levels(&self) -> Result<i32> { ... }
fn get_edge_threshold(&self) -> Result<i32> { ... }
fn get_first_level(&self) -> Result<i32> { ... }
fn get_wta_k(&self) -> Result<i32> { ... }
fn get_score_type(&self) -> Result<i32> { ... }
fn get_patch_size(&self) -> Result<i32> { ... }
fn get_fast_threshold(&self) -> Result<i32> { ... }
fn get_blur_for_descriptor(&self) -> Result<bool> { ... }
}
Expand description
Constant methods for crate::cudafeatures2d::CUDA_ORB
Required Methods§
fn as_raw_CUDA_ORB(&self) -> *const c_void
Provided Methods§
fn get_max_features(&self) -> Result<i32>
fn get_scale_factor(&self) -> Result<f64>
fn get_n_levels(&self) -> Result<i32>
fn get_edge_threshold(&self) -> Result<i32>
fn get_first_level(&self) -> Result<i32>
fn get_wta_k(&self) -> Result<i32>
fn get_score_type(&self) -> Result<i32>
fn get_patch_size(&self) -> Result<i32>
fn get_fast_threshold(&self) -> Result<i32>
fn get_blur_for_descriptor(&self) -> Result<bool>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.