Search code examples
c++image-processingedge-detection

Compare two videos using Image processing


Hi i am new to image processing.I want to compare two videos using image processing.First type of video has effect(blur) in video.And second type is normal video. Using edge detection i want to compare two videos.So i want to use canny edge detection.Is there any guide to help to do this project.I want to extract some information in edge video.i thought using canny edge detection identify edge and extract information from it.


Solution

  • Adi has given good point, apart from that I would suggest you to see Canny Edge detector threshold values gives different result for better edge detection without bothering small differences in lighting and contrast, otherwise your result may differ.

    For matching edges, see ECR.

    Apart from that I would suggest you to add multiple methods for video matching to avoid high processing and false-positive. e.g. if you compare histogram(it is quite simple easy and fast) and if difference is very high, no need to compare edges(comparatively process intensive).