I am writing a program to find duplicate videos, I am pulling frames every 500ms and using ORB to compute. I was looking at using FLANN for matching and heard about index. Reading further it says that you sacrifice accuracy, but I wonder how much. Since I am matching videos I only want 95% or higher matches of frames and will determine video matches by how many frames in common at that accuracy.
My question is, can I use index for this or is it too inaccurate. If I can use index, is there some example of how to correlate matches in the index with the separate frames? Can you point me to some examples of doing this?