Click or drag to resize
Accord.NET (logo)

AsyncVideoSourceFramesProcessed Property

Processed frames count.

Namespace:  Accord.Video
Assembly:  Accord.Video (in Accord.Video.dll) Version: 3.8.0
Syntax
public int FramesProcessed { get; }
Request Example View Source

Property Value

Type: Int32
Remarks

The property keeps the number of processed video frames since the last access to this property.

The value of this property equals to FramesReceived in most cases if the SkipFramesIfBusy property is set to - every received frame gets processed sooner or later. However, if the SkipFramesIfBusy property is set to , then value of this property may be lower than the value of the FramesReceived property, which means that nested video source performs acquisition faster than client perform processing of the received frame and some frame are skipped from processing.

See Also