Struct opencv::features2d::StarAdjuster [] [src]

pub struct StarAdjuster {
    pub ptr: *mut c_void,
}

Fields

ptr

Methods

impl StarAdjuster

fn as_raw_StarAdjuster(&self) -> *mut c_void

impl StarAdjuster

fn new(initial_thresh: f64, min_thresh: f64, max_thresh: f64) -> Result<StarAdjuster, String>

fault value for arguments: - initial_thresh: default 30.0 - min_thresh: default 2. - max_thresh: default 200.

fn too_few(&mut self, minv: i32, n_detected: i32) -> Result<(), String>

fn too_many(&mut self, maxv: i32, n_detected: i32) -> Result<(), String>

fn good(&self) -> Result<bool, String>

Trait Implementations

impl Drop for StarAdjuster

fn drop(&mut self)

impl AdjusterAdapter for StarAdjuster

fn as_raw_AdjusterAdapter(&self) -> *mut c_void

impl Algorithm for StarAdjuster

fn as_raw_Algorithm(&self) -> *mut c_void

fn name(&self) -> Result<String, String>

fn get_int(&self, name: &str) -> Result<i32, String>

fn get_double(&self, name: &str) -> Result<f64, String>

fn get_bool(&self, name: &str) -> Result<bool, String>

fn get_string(&self, name: &str) -> Result<String, String>

fn get_mat(&self, name: &str) -> Result<Mat, String>

fn get_mat_vector(&self, name: &str) -> Result<VectorOfMat, String>

fn set_int(&mut self, name: &str, value: i32) -> Result<(), String>

fn set_double(&mut self, name: &str, value: f64) -> Result<(), String>

fn set_bool(&mut self, name: &str, value: bool) -> Result<(), String>

fn set_string(&mut self, name: &str, value: &str) -> Result<(), String>

fn set_mat(&mut self, name: &str, value: &Mat) -> Result<(), String>

fn set_VectorOfMat(&mut self, name: &str, value: &VectorOfMat) -> Result<(), String>

fn param_help(&self, name: &str) -> Result<String, String>

fn param_type(&self, name: &str) -> Result<i32, String>

fn get_params(&self, names: &VectorOfString) -> Result<(), String>

fn get_list(&mut self, algorithms: &VectorOfString) -> Result<(), String>

impl FeatureDetector for StarAdjuster

fn as_raw_FeatureDetector(&self) -> *mut c_void

fn detect(&self, image: &Mat, keypoints: &VectorOfKeyPoint, mask: &Mat) -> Result<(), String>

fn detect_n(&self, images: &VectorOfMat, keypoints: &VectorOfVectorOfKeyPoint, masks: &VectorOfMat) -> Result<(), String>

fn empty(&self) -> Result<bool, String>

fn create(&mut self, detectorType: &str) -> Result<PtrOfFeatureDetector, String>