服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - JAVA教程 - Java实现图片对比功能

Java实现图片对比功能

2019-11-28 14:21hebedich JAVA教程

个人从来没有研究过图像学,也没看过什么论文或者相关文档,写这个完全是靠google和百度,自己写了个实验了下,测试用例也少,估计有大BUG的存在,所以看的人权当学习交流,切勿生产使用。

  之前用按键精灵写过一些游戏辅助,里面有个函数叫FindPic,就上在屏幕范围查找给定的一张图片,返回查找到的坐标位置。

  现在,Java来实现这个函数类似的功能。

  算法描述:

屏幕截图,得到图A,(查找的目标图片为图B);
遍历图A的像素点,根据图B的尺寸,得到图B四个角映射到图A上的四个点;
得到的四个点与图B的四个角像素点的值比较。如果四个点一样,执行步骤4;否则,回到步骤2继续;
进一步对比,将映射范围内的全部点与图B全部的点比较。如果全部一样,则说明图片已找到;否则,回到步骤2继续;
  这里,像素之间的比较是通过BufferedImage对象获取每个像素的RGB值来比较的。如下,将BufferedImage转换为int二维数组:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* 根据BufferedImage获取图片RGB数组
* @param bfImage
* @return
*/
public static int[][] getImageGRB(BufferedImage bfImage) {
  int width = bfImage.getWidth();
  int height = bfImage.getHeight();
  int[][] result = new int[height][width];
  for (int h = 0; h < height; h++) {
    for (int w = 0; w < width; w++) {
      //使用getRGB(w, h)获取该点的颜色值是ARGB,而在实际应用中使用的是RGB,所以需要将ARGB转化成RGB,即bufImg.getRGB(w, h) & 0xFFFFFF。
      result[h][w] = bfImage.getRGB(w, h) & 0xFFFFFF;
    }
  }
  return result;
}

   比较两个像素点的RGB值是否相同,是通过异或操作比较的(据说比==效率更高),如果异或操作后得到的值为0,说明两个像素点的RGB一样,否则不一样。

  下面附上算法完整java代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.jebysun.test.imagefind;
 
import java.awt.AWTException;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
 
import javax.imageio.ImageIO;
/**
* 屏幕上查找指定图片
* @author Jeby Sun
* @date 2014-09-13
* @website http://www.jebysun.com
*/
public class ImageFindDemo {
  
  BufferedImage screenShotImage;  //屏幕截图
  BufferedImage keyImage;      //查找目标图片
  
  int scrShotImgWidth;       //屏幕截图宽度
  int scrShotImgHeight;       //屏幕截图高度
  
  int keyImgWidth;         //查找目标图片宽度
  int keyImgHeight;         //查找目标图片高度
  
  int[][] screenShotImageRGBData;  //屏幕截图RGB数据
  int[][] keyImageRGBData;     //查找目标图片RGB数据
  
  int[][][] findImgData;      //查找结果,目标图标位于屏幕截图上的坐标数据
  
  
  public ImageFindDemo(String keyImagePath) {
    screenShotImage = this.getFullScreenShot();
    keyImage = this.getBfImageFromPath(keyImagePath);
    screenShotImageRGBData = this.getImageGRB(screenShotImage);
    keyImageRGBData = this.getImageGRB(keyImage);
    scrShotImgWidth = screenShotImage.getWidth();
    scrShotImgHeight = screenShotImage.getHeight();
    keyImgWidth = keyImage.getWidth();
    keyImgHeight = keyImage.getHeight();
    
    //开始查找
    this.findImage();
    
  }
  
  /**
  * 全屏截图
  * @return 返回BufferedImage
  */
  public BufferedImage getFullScreenShot() {
    BufferedImage bfImage = null;
    int width = (int) Toolkit.getDefaultToolkit().getScreenSize().getWidth();
    int height = (int) Toolkit.getDefaultToolkit().getScreenSize().getHeight();
    try {
      Robot robot = new Robot();
      bfImage = robot.createScreenCapture(new Rectangle(0, 0, width, height));
    } catch (AWTException e) {
      e.printStackTrace();
    }
    return bfImage;
  }
  
  /**
  * 从本地文件读取目标图片
  * @param keyImagePath - 图片绝对路径
  * @return 本地图片的BufferedImage对象
  */
  public BufferedImage getBfImageFromPath(String keyImagePath) {
    BufferedImage bfImage = null;
    try {
      bfImage = ImageIO.read(new File(keyImagePath));
    } catch (IOException e) {
      e.printStackTrace();
    }
    return bfImage;
  }
  
  /**
  * 根据BufferedImage获取图片RGB数组
  * @param bfImage
  * @return
  */
  public int[][] getImageGRB(BufferedImage bfImage) {
    int width = bfImage.getWidth();
    int height = bfImage.getHeight();
    int[][] result = new int[height][width];
    for (int h = 0; h < height; h++) {
      for (int w = 0; w < width; w++) {
        //使用getRGB(w, h)获取该点的颜色值是ARGB,而在实际应用中使用的是RGB,所以需要将ARGB转化成RGB,即bufImg.getRGB(w, h) & 0xFFFFFF。
        result[h][w] = bfImage.getRGB(w, h) & 0xFFFFFF;
      }
    }
    return result;
  }
  
  
  /**
  * 查找图片
  */
  public void findImage() {
    findImgData = new int[keyImgHeight][keyImgWidth][2];
    //遍历屏幕截图像素点数据
    for(int y=0; y<scrShotImgHeight-keyImgHeight; y++) {
      for(int x=0; x<scrShotImgWidth-keyImgWidth; x++) {
        //根据目标图的尺寸,得到目标图四个角映射到屏幕截图上的四个点,
        //判断截图上对应的四个点与图B的四个角像素点的值是否相同,
        //如果相同就将屏幕截图上映射范围内的所有的点与目标图的所有的点进行比较。
        if((keyImageRGBData[0][0]^screenShotImageRGBData[y][x])==0
            && (keyImageRGBData[0][keyImgWidth-1]^screenShotImageRGBData[y][x+keyImgWidth-1])==0
            && (keyImageRGBData[keyImgHeight-1][keyImgWidth-1]^screenShotImageRGBData[y+keyImgHeight-1][x+keyImgWidth-1])==0
            && (keyImageRGBData[keyImgHeight-1][0]^screenShotImageRGBData[y+keyImgHeight-1][x])==0) {
          
          boolean isFinded = isMatchAll(y, x);
          //如果比较结果完全相同,则说明图片找到,填充查找到的位置坐标数据到查找结果数组。
          if(isFinded) {
            for(int h=0; h<keyImgHeight; h++) {
              for(int w=0; w<keyImgWidth; w++) {
                findImgData[h][w][0] = y+h;
                findImgData[h][w][1] = x+w;
              }
            }
            return;
          }
        }
      }
    }
  }
  
  /**
  * 判断屏幕截图上目标图映射范围内的全部点是否全部和小图的点一一对应。
  * @param y - 与目标图左上角像素点想匹配的屏幕截图y坐标
  * @param x - 与目标图左上角像素点想匹配的屏幕截图x坐标
  * @return
  */
  public boolean isMatchAll(int y, int x) {
    int biggerY = 0;
    int biggerX = 0;
    int xor = 0;
    for(int smallerY=0; smallerY<keyImgHeight; smallerY++) {
      biggerY = y+smallerY;
      for(int smallerX=0; smallerX<keyImgWidth; smallerX++) {
        biggerX = x+smallerX;
        if(biggerY>=scrShotImgHeight || biggerX>=scrShotImgWidth) {
          return false;
        }
        xor = keyImageRGBData[smallerY][smallerX]^screenShotImageRGBData[biggerY][biggerX];
        if(xor!=0) {
          return false;
        }
      }
      biggerX = x;
    }
    return true;
  }
  
  /**
  * 输出查找到的坐标数据
  */
  private void printFindData() {
    for(int y=0; y<keyImgHeight; y++) {
      for(int x=0; x<keyImgWidth; x++) {
        System.out.print("("+this.findImgData[y][x][0]+", "+this.findImgData[y][x][1]+")");
      }
      System.out.println();
    }
  }
 
  
  public static void main(String[] args) {
    String keyImagePath = "D:/key.png";
    ImageFindDemo demo = new ImageFindDemo(keyImagePath);
    demo.printFindData();
  }
 
}

  这种算法是精确比较,只要有一个像素点有差异,就会找不到图片。当然,如果想指定一个比较的精确度,我也有个思路,就是在算法步骤4比较映射范围内全部像素点的时候做个统计,如果90%的点都相同,那就是说精确度是0.9。

  另外,可能还要考虑效率问题,不过,我在我的应用场景中并不太在意效率。如果有朋友看到这篇文章,对这个话题有更好的想法,请留言。

延伸 · 阅读

精彩推荐