-
Java 比较两张图片的相似度
- import java.awt.image.BufferedImage;
- import java.io.File;
- import javax.imageio.ImageIO;
-
-
-
-
-
-
- public class BMPLoader {
-
- public static String[][] getPX(String args) {
- int[] rgb = new int[3];
-
- File file = new File(args);
- BufferedImage bi = null;
- try {
- bi = ImageIO.read(file);
- } catch (Exception e) {
- e.printStackTrace();
- }
-
- int width = bi.getWidth();
- int height = bi.getHeight();
- int minx = bi.getMinX();
- int miny = bi.getMinY();
- String[][] list = new String[width][height];
- for (int i = minx; i < width; i++) {
- for (int j = miny; j < height; j++) {
- int pixel = bi.getRGB(i, j);
- rgb[0] = (pixel & 0xff0000) >> 16;
- rgb[1] = (pixel & 0xff00) >> 8;
- rgb[2] = (pixel & 0xff);
- list[i][j] = rgb[0] + "," + rgb[1] + "," + rgb[2];
-
- }
- }
- return list;
-
- }
-
- public static void compareImage(String imgPath1, String imgPath2){
- String[] images = {imgPath1, imgPath2};
- if (images.length == 0) {
- System.out.println("Usage >java BMPLoader ImageFile.bmp");
- System.exit(0);
- }
-
-
- String[][] list1 = getPX(images[0]);
- String[][] list2 = getPX(images[1]);
- int xiangsi = 0;
- int busi = 0;
- int i = 0, j = 0;
- for (String[] strings : list1) {
- if ((i + 1) == list1.length) {
- continue;
- }
- for (int m=0; m<strings.length; m++) {
- try {
- String[] value1 = list1[i][j].toString().split(",");
- String[] value2 = list2[i][j].toString().split(",");
- int k = 0;
- for (int n=0; n<value2.length; n++) {
- if (Math.abs(Integer.parseInt(value1[k]) - Integer.parseInt(value2[k])) < 5) {
- xiangsi++;
- } else {
- busi++;
- }
- }
- } catch (RuntimeException e) {
- continue;
- }
- j++;
- }
- i++;
- }
-
- list1 = getPX(images[1]);
- list2 = getPX(images[0]);
- i = 0;
- j = 0;
- for (String[] strings : list1) {
- if ((i + 1) == list1.length) {
- continue;
- }
- for (int m=0; m<strings.length; m++) {
- try {
- String[] value1 = list1[i][j].toString().split(",");
- String[] value2 = list2[i][j].toString().split(",");
- int k = 0;
- for (int n=0; n<value2.length; n++) {
- if (Math.abs(Integer.parseInt(value1[k]) - Integer.parseInt(value2[k])) < 5) {
- xiangsi++;
- } else {
- busi++;
- }
- }
- } catch (RuntimeException e) {
- continue;
- }
- j++;
- }
- i++;
- }
- String baifen = "";
- try {
- baifen = ((Double.parseDouble(xiangsi + "") / Double.parseDouble((busi + xiangsi) + "")) + "");
- baifen = baifen.substring(baifen.indexOf(".") + 1, baifen.indexOf(".") + 3);
- } catch (Exception e) {
- baifen = "0";
- }
- if (baifen.length() <= 0) {
- baifen = "0";
- }
- if(busi == 0){
- baifen="100";
- }
-
- System.out.println("相似像素数量:" + xiangsi + " 不相似像素数量:" + busi + " 相似率:" + Integer.parseInt(baifen) + "%");
-
- }
-
- public static void main(String[] args){
- BMPLoader.compareImage("E:\12.bmp", "E:\1.bmp");
- }
- }
-
相关阅读:
虚拟机中安装vmware tools 到 Debian 时出现 找不到kernel headers的提示
中小企业信息安全:基本原则
关于开源的一些注意事项
创建Odoo8数据库时的“new encoding (UTF8) is incompatible with the encoding of the template database (SQL_ASCII)“问题
debian8安装Odoo中的Barcode Scanner Hardware Driver模块时,提示没有evdev
vim /vi中对字符串的查找并替换
解决 odoo.py: error: option --addons-path: The addons-path 'local-addons/' does not seem to a be a valid Addons Directory!
debian命令行删除postgresql数据库
liunx修改字体为宋体
OpenERP|odoo Web开发
-
原文地址:https://www.cnblogs.com/rosepotato/p/3530112.html
Copyright © 2020-2023
润新知