pub trait RadialVarianceHashTrait: ImgHashBaseTrait + RadialVarianceHashTraitConst {
// Required method
fn as_raw_mut_RadialVarianceHash(&mut self) -> *mut c_void;
// Provided methods
fn set_num_of_angle_line(&mut self, value: i32) -> Result<()> { ... }
fn set_sigma(&mut self, value: f64) -> Result<()> { ... }
fn get_features(&mut self) -> Result<Vector<f64>> { ... }
fn get_hash(&mut self) -> Result<Mat> { ... }
fn get_pix_per_line(&mut self, input: &impl MatTraitConst) -> Result<Mat> { ... }
fn get_projection(&mut self) -> Result<Mat> { ... }
}
Expand description
Mutable methods for crate::img_hash::RadialVarianceHash
Required Methods§
fn as_raw_mut_RadialVarianceHash(&mut self) -> *mut c_void
Provided Methods§
fn set_num_of_angle_line(&mut self, value: i32) -> Result<()>
fn set_sigma(&mut self, value: f64) -> Result<()>
fn get_features(&mut self) -> Result<Vector<f64>>
fn get_hash(&mut self) -> Result<Mat>
fn get_pix_per_line(&mut self, input: &impl MatTraitConst) -> Result<Mat>
fn get_projection(&mut self) -> Result<Mat>
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.