Skip to content

Instantly share code, notes, and snippets.

@visioforge
Last active March 16, 2021 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save visioforge/52850401eda62d4b0bcd1c0f5980502d to your computer and use it in GitHub Desktop.
Save visioforge/52850401eda62d4b0bcd1c0f5980502d to your computer and use it in GitHub Desktop.
// code sample
using VisioForge.VideoFingerPrinting;
using VisioForge.VideoFingerPrinting.Sources;
using VisioForge.VideoFingerPrinting.Sources.DirectShow;
using VisioForge.VideoFingerPrinting.Sources.MediaInfo;
...
// create processor
var processor = new VFPFingerprintFromFrames(
frameRate,
width,
height,
duration);
// push RGB24 frames
processor.Push(buffer);
...
processor.Push(buffer);
// build fingerprint
var vfp = processor.Build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment