algorithm - Video Scene Detection Implementation -


i looking video scene detection algorithm implementation. programming language used implementation acceptable. found implementation sensitive small changes , inaccurate.

finally did simple implementation, comparing 2 consecutive frames:

  1. resize current frame: computation time + memory
  2. generate color histogram resized frame
  3. calculate euclidean distance of current frame previous frame's.
  4. if euclidean distance greater given threshold, have scene change.

the threshold varies video ... got acceptable results.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -