Class VFPComparisonResult
- Namespace
- VisioForge.Core.VideoFingerPrinting
- Assembly
- VisioForge.Core.dll
Represents the result of a fingerprint comparison or search operation.
public class VFPComparisonResultInheritance
Inherited Members
Remarks
This class encapsulates all information returned from a fingerprint comparison or search operation, including the similarity score, any detected video transformations, temporal alignment information, and the overall operation status. It is used by both whole-video comparison and fragment search operations.
Properties
Difference
Gets or sets the difference score indicating how similar the fingerprints are.
public double Difference { get; set; }Property Value
MirrorMode
Gets or sets the detected mirror mode for the best match.
public VFPMirrorMode MirrorMode { get; set; }Property Value
Success
Gets or sets whether the comparison operation completed successfully.
public bool Success { get; set; }Property Value
TimeOffset
Gets or sets the time offset in seconds where the best match was found.
public int TimeOffset { get; set; }