BufferedImage image = ImageIO.read(new File(img path));
int width = image.getWidth();
int height = image.getHeight();
int[][] result = new int[height][width];
for (int row = 0; row < height; row++) {
for (int col = 0; col < width; col++) {
result[row][col] = image.getRGB(row, col);
}
}
这是我得到的例外:
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 PlantExtraction.main(PlantExtraction.java:46)
如何删除这些例外?
答案 0 :(得分:4)
代码
image.getRGB(row, col);
应该是
image.getRGB(col, row);
正如文件所说:
getRGB(int x, int y)
。
(您的col
值正在运行width
- 这是x
- 图片的最大值,因此请col
使用x
和{{ 1}} row
)