pub struct BIF { /* private fields */ }
Expand description
Implementation of bio-inspired features (BIF) from the paper: Guo, Guodong, et al. “Human age estimation using bio-inspired features.” Computer Vision and Pattern Recognition, 2009. CVPR 2009.
Implementations§
source§impl BIF
impl BIF
sourcepub fn create(num_bands: i32, num_rotations: i32) -> Result<Ptr<BIF>>
pub fn create(num_bands: i32, num_rotations: i32) -> Result<Ptr<BIF>>
Parameters
- num_bands: The number of filter bands (<=8) used for computing BIF.
- num_rotations: The number of image rotations for computing BIF.
Returns
Object for computing BIF.
C++ default parameters
- num_bands: 8
- num_rotations: 12
sourcepub fn create_def() -> Result<Ptr<BIF>>
pub fn create_def() -> Result<Ptr<BIF>>
Parameters
- num_bands: The number of filter bands (<=8) used for computing BIF.
- num_rotations: The number of image rotations for computing BIF.
Returns
Object for computing BIF.
Note
This alternative version of BIF::create function uses the following default values for its arguments:
- num_bands: 8
- num_rotations: 12
Trait Implementations§
source§impl AlgorithmTrait for BIF
impl AlgorithmTrait for BIF
source§impl AlgorithmTraitConst for BIF
impl AlgorithmTraitConst for BIF
fn as_raw_Algorithm(&self) -> *const c_void
source§fn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
Stores algorithm parameters in a file storage
source§fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
Stores algorithm parameters in a file storage Read more
source§fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
@deprecated Read more
source§fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
👎Deprecated:
Note
Deprecated: ## Note
This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§fn empty(&self) -> Result<bool>
fn empty(&self) -> Result<bool>
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
source§fn save(&self, filename: &str) -> Result<()>
fn save(&self, filename: &str) -> Result<()>
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
source§fn get_default_name(&self) -> Result<String>
fn get_default_name(&self) -> Result<String>
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
source§impl BIFTraitConst for BIF
impl BIFTraitConst for BIF
fn as_raw_BIF(&self) -> *const c_void
source§fn compute(
&self,
image: &impl ToInputArray,
features: &mut impl ToOutputArray
) -> Result<()>
fn compute( &self, image: &impl ToInputArray, features: &mut impl ToOutputArray ) -> Result<()>
Computes features sby input image. Read more
source§impl Boxed for BIF
impl Boxed for BIF
impl Send for BIF
Auto Trait Implementations§
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more