问题
i have a problem regarding a pixel search in java. At the moment my Class/Programm is searching pixel by pixel thats to slow for my purposes. I wan't Java to search the Pixels much faster so i came to the idea to ask you guys. I'm searching for the pixels by an RGB color. This is my Source code:
final int rot = 0;
final int gruen = 0;
final int blau = 0;
int toleranz = 1;
Color pixelFarbe;
Dimension bildschirm = Toolkit.getDefaultToolkit().getScreenSize();
Robot roboter = null;
try {
roboter = new Robot();
} catch (AWTException e) {
e.printStackTrace();
OrbitRaider.log("Robot is not working.");
}
for(int x = 0; x <= bildschirm.getWidth(); x++)
{
for(int y = 0; y <= bildschirm.getHeight(); y++)
{
// Pixelfarbe bekommen
pixelFarbe = roboter.getPixelColor(x, y);
// Wenn Pixelfarbe gleich unserer Farbe
if( (pixelFarbe.getRed() < (rot - toleranz)) || (pixelFarbe.getRed() > (rot + toleranz))
&& (pixelFarbe.getGreen() < (gruen - toleranz)) || (pixelFarbe.getGreen() > (gruen + toleranz))
&& (pixelFarbe.getBlue() < (blau - toleranz)) || (pixelFarbe.getBlue() > (blau + toleranz)) ){("Could not find Pixel Color");
}
else{
System.out.println("Pixelcolor found at x: " + x + " y: " + y);
}
}
}
回答1:
Probably it is much faster to create a screen capture with the createScreenCapture method of the Robot class, and then inspect the pixels of this BufferedImage - not with the obvious getRGB method (this is also quite slow because of the color space conversions that occur on each call), but going through the int array which is behind the BufferedImage.
See this: Java - get pixel array from image
来源:https://stackoverflow.com/questions/19688104/fast-pixel-search-in-java