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:
- resize current frame: computation time + memory
- generate color histogram resized frame
- calculate euclidean distance of current frame previous frame's.
- if euclidean distance greater given threshold, have scene change.
the threshold varies video ... got acceptable results.
Comments
Post a Comment