Python scene change detection

I am wondering if anyone has any experience with Python and video processing. Essentially, I would like to know if there are any libraries that would allow me to record scenes in video? If not, is there something that can allow me to split the video into a series of frames and allow me to communicate with pixels?

Thank!

+5
source share
1 answer

OpenCV has Python bindings; I don't think it has any scene border algorithms / functions that you created, but you can definitely use it to write your own.

+3
source

All Articles