有没有一种快速的方法可以在屏幕上找到图像?
我确实喜欢这样:(在那之前我用 Robot.createScreenCapture(...) 捕获了屏幕)
public static Point search(BufferedImage big, BufferedImage small) {
Robot robot = null;
try {
robot = new Robot();
} catch (AWTException e) {
e.printStackTrace();
}
long time=System.currentTimeMillis();
for (int x = 0; x < big.getWidth() - small.getWidth(); x++) {
for (int y = 0; y < big.getHeight() - small.getHeight(); y++) {
if (compare(x, y, big, small)) {
return new Point(x, y);
}
}
}
System.out.println(System.currentTimeMillis()-time);
return null;
}
private static boolean compare(int xs, int ys, BufferedImage img1, BufferedImage img2) {
for (int x = 0; x < img2.getWidth(); x++) {
for (int y = 0; y < img2.getHeight(); y++) {
if (img1.getRGB(x + xs, y + ys) != img2.getRGB(x, y)) {
return false;
}
}
}
return true;
}
但有时只需要 200 毫秒,但有时需要 10000 毫秒!:(
编辑:如果有人知道 Autohotkey,它是另一种编程语言,并且有一个名为“ImageSearch”的函数可以在几毫秒内找到这些图像......(我认为基于 C++)