Table of Contents

Class BIF

Namespace
OpenCvSharp.Face
Assembly
OpenCvSharp.dll

Computes bio-inspired features used by age-estimation models.

public sealed class BIF : Algorithm, IDisposable
Inheritance
BIF
Implements
Inherited Members

Properties

NumBands

Gets the number of filter bands.

public int NumBands { get; }

Property Value

int

NumRotations

Gets the number of image rotations.

public int NumRotations { get; }

Property Value

int

Methods

Compute(InputArray, OutputArray)

Computes a CV_32FC1 feature vector from a CV_32FC1 image.

public void Compute(InputArray image, OutputArray features)

Parameters

image InputArray
features OutputArray

Create(int, int)

Creates a BIF descriptor.

public static BIF Create(int numBands = 8, int numRotations = 12)

Parameters

numBands int
numRotations int

Returns

BIF