pub trait SimpleBlobDetectorTraitConst: Feature2DTraitConst {
// Required method
fn as_raw_SimpleBlobDetector(&self) -> *const c_void;
// Provided methods
fn get_params(&self) -> Result<SimpleBlobDetector_Params> { ... }
fn get_default_name(&self) -> Result<String> { ... }
fn get_blob_contours(&self) -> Result<Vector<Vector<Point>>> { ... }
}
Expand description
Constant methods for crate::features2d::SimpleBlobDetector
Required Methods§
fn as_raw_SimpleBlobDetector(&self) -> *const c_void
Provided Methods§
fn get_params(&self) -> Result<SimpleBlobDetector_Params>
fn get_default_name(&self) -> Result<String>
fn get_blob_contours(&self) -> Result<Vector<Vector<Point>>>
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.