Suitable detection algorithm for viewpoint change detection #412
Replies: 2 comments
-
So, if I understand this correctly, you are only interested in detecting cuts in which most of the content in the frame is similar in some attributes (like color), but different in others (like edges) and ignore any detected cuts where both of these change. I don't think that by default you would be able to set up detectors to do this. Instead, what I would recommend is to analyze a video with a number of different detectors and save the analysis to a statsfile. You would then need to run your own analysis on that statsfile to figure out which transitions match the pattern you want and which ones don't and can be ignored. As an example, let's say you are interested in detecting when the viewpoint switches between two different angles that are both looking down on an athletic field. In that case, the color distribution of the resulting video is likely to be unchanged between the two shots, meaning that it is unlikely to be detected using So, in that case, you would analyze your video while saving out the stats for those different detectors to a statsfile, then analyze the statsfile afterwards using whatever criteria you want. This bit is outside the scope of this project though. |
Beta Was this translation helpful? Give feedback.
-
@wjs018, got it. Thanks a lot for the suggestion! |
Beta Was this translation helpful? Give feedback.
-
Hi, does anybody have any idea which detection algorithm might be best suited for detecting viewpiont changes (e.g., closeup vs. distant, first- vs. third-person, etc. )? I want the detector to be triggered only when the viewpoint changes, but not when the content changes in the same viewpoint. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions