I want to extract keyframes from a video. Now I'm using a loop that compare the samples of one frame with the samples of the preceding frame, but this method isn't very good.
Let me explain: I have a surveillance video and I have to select the frames where there is a change (a person appears, another person appears, a person goes away, etc.) Now I'm using this class to compare frames: Java Image Comparison / Motion Detection Class
Do you know other ways?
Thanks!!