BIF
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.
Member of Face
-
Declaration
Objective-C
+ (nonnull BIF *)create:(int)num_bands num_rotations:(int)num_rotations;Swift
class func create(num_bands: Int32, num_rotations: Int32) -> BIFParameters
num_bandsThe number of filter bands (<=8) used for computing BIF.
num_rotationsThe number of image rotations for computing BIF.
Return Value
Object for computing BIF.
-
Declaration
Objective-C
+ (nonnull BIF *)create:(int)num_bands;Swift
class func create(num_bands: Int32) -> BIFParameters
num_bandsThe number of filter bands (<=8) used for computing BIF.
Return Value
Object for computing BIF.
-
Declaration
Objective-C
+ (nonnull BIF *)create;Swift
class func create() -> BIFReturn Value
Object for computing BIF.
-
Declaration
Objective-C
- (int)getNumBands;Swift
func getNumBands() -> Int32Return Value
The number of filter bands used for computing BIF.
-
Declaration
Objective-C
- (int)getNumRotations;Swift
func getNumRotations() -> Int32Return Value
The number of image rotations.
View on GitHub
BIF Class Reference