我正在尝试从64 x 48
位图像中获取像素rgb值。我得到了一些值,但远不及我期待的3072 (= 64 x 48)
值。我也得到了:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Coordinate out of bounds!
at sun.awt.image.ByteInterleavedRaster.getDataElements(ByteInterleavedRaster.java:301)
at java.awt.image.BufferedImage.getRGB(BufferedImage.java:871)
at imagetesting.Main.getPixelData(Main.java:45)
at imagetesting.Main.main(Main.java:27)
我找不到越界错误......
以下是代码:
package imagetesting;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.io.File;
import java.awt.image.BufferedImage;
public class Main {
public static final String IMG = "matty.jpg";
public static void main(String[] args) {
BufferedImage img;
try {
img = ImageIO.read(new File(IMG));
int[][] pixelData = new int[img.getHeight() * img.getWidth()][3];
int[] rgb;
int counter = 0;
for(int i = 0; i < img.getHeight(); i++){
for(int j = 0; j < img.getWidth(); j++){
rgb = getPixelData(img, i, j);
for(int k = 0; k < rgb.length; k++){
pixelData[counter][k] = rgb[k];
}
counter++;
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
private static int[] getPixelData(BufferedImage img, int x, int y) {
int argb = img.getRGB(x, y);
int rgb[] = new int[] {
(argb >> 16) & 0xff, //red
(argb >> 8) & 0xff, //green
(argb ) & 0xff //blue
};
System.out.println("rgb: " + rgb[0] + " " + rgb[1] + " " + rgb[2]);
return rgb;
}
}
答案 0 :(得分:12)
此:
for(int i = 0; i < img.getHeight(); i++){
for(int j = 0; j < img.getWidth(); j++){
rgb = getPixelData(img, i, j);
与此不匹配:
private static int[] getPixelData(BufferedImage img, int x, int y) {
您i
计算行数和j
列,即i
包含 y 值,j
包含 x < / em>值。那是倒退。
答案 1 :(得分:5)
我一直在寻找同样的能力。不想枚举整个图像,所以我做了一些搜索并使用了PixelGrabber。
Image img = Toolkit.getDefaultToolkit().createImage(filename);
PixelGrabber pg = new PixelGrabber(img, 0, 0, -1, -1, false);
pg.grabPixels(); // Throws InterruptedException
width = pg.getWidth();
height = pg.getHeight();
int[] pixels = (int[])pg.getPixels();
您可以直接使用int[]
,像素采用pg.getColorModel()
中ColorModel指定的格式,或者您可以将false更改为true并强制它为RGB8-in-int。
我发现Raster
和Image类也可以这样做,并且在javax.imageio.*
中添加了一些有用的类。
BufferedImage img = ImageIO.read(new File(filename)); // Throws IOException
int[] pixels = img.getRGB(0,0, img.getWidth(), img.getHeight, null, 0, img.getWidth());
// also available through the BufferedImage's Raster, in multiple formats.
Raster r = img.getData();
int[] pixels = r.getPixels(0,0,r.getWidth(), r.getHeight(), (int[])null);
getPixels(...)
中也有多种Raster
方法。
答案 2 :(得分:5)
这也有效:
BufferedImage img = ImageIO.read(file);
int[] pixels = ((DataBufferInt)img.getRaster().getDataBuffer()).getData();
答案 3 :(得分:3)
int argb = img.getRGB(x, y);
您的代码
int argb = img.getRGB(y, x);
我的更改现在可以正常使用
答案 4 :(得分:2)
你必须改变:
for(int i = 0; i < img.getHeight(); i++){
for(int j = 0; j < img.getWidth(); j++){
rgb = getPixelData(img, i, j);
向
for(int i = 0; i < img.getWidth(); i++){
for(int j = 0; j < img.getHeight(); j++){
rgb = getPixelData(img, i, j);
因为getPixelData
中的第二个参数是x
- 值,而值是y
- 值。你切换了参数。
答案 5 :(得分:1)
为什么不使用只使用:
public int[] getRGB(int startX,
int startY,
int w,
int h,
int[] rgbArray,
int offset,
int scansize)
它是内置的,伙计。