[编辑] 我设计了一些用于图像比较的代码。匹配的部分仍然有点缺陷,我希望得到一些帮助。该项目可以在 - GitHub 上找到。
我有这两个图像Img1和Img2:
当我在 openCV 中使用以下命令时
Mat img1 = Highgui.imread("mnt/sdcard/IMG-20121228.jpg");
Mat img2 = Highgui.imread("mnt/sdcard/IMG-20121228-1.jpg");
try{
double l2_norm = Core.norm( img1, img2 );
tv.setText(l2_norm+"");
} catch(Exception e) {
//image is not a duplicate
}
我得到 l2_norm 的双倍值。对于重复的图像对,此双精度值会有所不同。但如果图像不同,则会引发异常。这是我识别重复图像的方式吗?或者有没有更好的方法?我已经广泛搜索并找不到一个真正令人信服的答案。我想要关于如何比较两个图像并获得布尔值true
或false
取决于图像的代码和解释。
编辑
Scalar blah= Core.sumElems(img2);
Scalar blah1=Core.sumElems(img1);
if(blah.equals(blah1))
{
tv.setText("same image");
}
}
我试过这个,但if
条件永远不会满足。我假设有一些差异,但没有compare
. Scalar
我该怎么办?
编辑
try{
Scalar blah= Core.sumElems(img2);
Scalar blah1=Core.sumElems(img1);
String b=blah.toString();
String b1=blah1.toString();
System.out.println(b+" "+b1);
double comp=b.compareTo(b1);
tv.setText(""+comp);
}
这种方法又是有缺陷的。虽然它可以用来比较准确度不错的图像,但当图像大小不同时它会失败。
当图像尺寸不同并且我打印标量值时,我得到了这个:
[9768383.0, 1.0052889E7, 1.0381814E7, 0.0] [1.5897384E7, 1.6322252E7, 1.690251E7, 0.0]
与比较相同尺寸的图像时相比,第二个和第三个数字之间的差异虽然不大,但还是相当大的。然而,第一个数字遭受的变化最大。
比较两个图像的内容的最佳最快方法是什么?
[编辑]
我正在使用我在这里找到的代码。
我无法弄清楚的是如何初始化MatOfKeyPoint
变量keypoints
和logoKeypoints
. 这是我的代码片段:
FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
//FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
//Imgproc.cvtColor(img1, img1, Imgproc.COLOR_RGBA2RGB);
//Imgproc.cvtColor(img2, img2, Imgproc.COLOR_RGBA2RGB);
DescriptorExtractor SurfExtractor = DescriptorExtractor
.create(DescriptorExtractor.SURF);
//extract keypoints
MatOfKeyPoint keypoints, logoKeypoints;
long time= System.currentTimeMillis();
detector.detect(img1, keypoints);
Log.d("LOG!", "number of query Keypoints= " + keypoints.size());
detector.detect(img2, logoKeypoints);
Log.d("LOG!", "number of logo Keypoints= " + logoKeypoints.size());
Log.d("LOG!", "keypoint calculation time elapsed" + (System.currentTimeMillis() -time));
//Descript keypoints
long time2 = System.currentTimeMillis();
Mat descriptors = new Mat();
Mat logoDescriptors = new Mat();
Log.d("LOG!", "logo type" + img2.type() + " intype" + img1.type());
SurfExtractor.compute(img1, keypoints, descriptors);
SurfExtractor.compute(img2, logoKeypoints, logoDescriptors);
Log.d("LOG!", "Description time elapsed" + (System.currentTimeMillis()- time2));
我显然无法初始化变量keypoints
并logoKeypoints
为空,因为那时我将收到一个空指针异常。如何初始化它们?