Table of Contents

Delegate VFPProgressCallback

Namespace
VisioForge.Core.VideoFingerPrinting
Assembly
VisioForge.Core.dll

Represents a callback method that reports progress during video fingerprinting operations.

public delegate void VFPProgressCallback(int percent)

Parameters

percent int

The progress percentage from 0 to 100, indicating how much of the fingerprinting operation has been completed.

Remarks

This callback is invoked periodically during lengthy fingerprinting operations to provide feedback on the operation's progress. The percent value increases monotonically from 0 (operation started) to 100 (operation complete). Implementations should return quickly to avoid blocking the fingerprinting process.