Interface IFaceDetector
Interface IFaceDetector
Namespace: VisioForge.Core.Types.VideoProcessing
Assembly: VisioForge.Core.dll
Syntax
public interface IFaceDetector
Properties
JSONFile
Gets or sets the json file.
Declaration
string JSONFile { get; set; }
Property Value
Type | Description |
---|---|
string | The json file. |
SkipFrames
Gets or sets the skip frames.
Declaration
int SkipFrames { get; set; }
Property Value
Type | Description |
---|---|
int | The skip frames. |
Methods
DoFacesDetected(List<CVFace>)
Does the faces detected.
Declaration
void DoFacesDetected(List<CVFace> faces)
Parameters
Type | Name | Description |
---|---|---|
List<CVFace> | faces | The faces. |
ProcessFrame(VideoFrameX)
Processes the specified frame.
Declaration
void ProcessFrame(VideoFrameX frame)
Parameters
Type | Name | Description |
---|---|---|
VideoFrameX | frame | The frame. |
Events
FacesDetected
Occurs when [faces detected].
Declaration
event EventHandler<List<CVFace>> FacesDetected
Event Type
Type | Description |
---|---|
EventHandler<List<CVFace>> |