How to check if two images are similar or not using openCV in java?

后端 未结 2 1995
借酒劲吻你
借酒劲吻你 2021-02-03 10:49

I have to check if two images are similar or not in java using OpenCV, I am using OpenCV for that and using ORB

Here is my main class

System.out.println(         


        
2条回答
  •  别跟我提以往
    2021-02-03 11:37

    Matcher only search for nearest match of keypoints graph. For measure difference you need use (average) sum (or other metric) of distances.

提交回复
热议问题