Java awt中的getRGB(x,y)为每个像素返回相同的值

时间:2019-03-26 10:38:09

标签: java image-processing awt rgb

我试图遍历图像,并从所有像素中获取每个RGB颜色值并进行处理。但是我为所有像素获得了相同的RGB值。所以很明显那是错误的。

我在Java awt中使用了 bufferedimage 对象的 getRGB(x,y) 方法。 知道有人在这里有什么问题吗?

编辑:

我遇到了问题,将图像转换为缓冲图像时出现了一些错误。我没有在缓冲图像中绘制图像。 以下代码现在可以按预期运行。

    public void printImgDetails(Image img) {

    // get the sizes of the image
    long heigth = img.getHeight(null);
    long width = img.getWidth(null);

    // hashSet to hold all brightness values
    HashSet<Float> set = new HashSet<Float>(0);

    BufferedImage bimage = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_BYTE_GRAY);
    int rgb;
    float[] hsv = new float[3];

    // Draw the image on to the buffered image
    Graphics2D bGr = bimage.createGraphics();
    bGr.drawImage(img, 0, 0, null);
    bGr.dispose();

    for (int i = 0; i < width; i++) {
        for (int j = 0; j < heigth; j++) {
            Color c = new Color(bimage.getRGB(j, i));

            int r = c.getRed();
            int g = c.getGreen();
            int b = c.getBlue();

            Color.RGBtoHSB(r, g, b, hsv);
            System.out.println("r: " + r + " g: " + g + " b: " + b);
            set.add(hsv[2]);
        }
    }

    // calculate the average brightness
    double sum = 0;
    for (float x : set) {
        sum += x;
    }
    double avg = sum / set.size();

    // print the results
    System.out.println("avg --> " + avg);

}

谢谢。

2 个答案:

答案 0 :(得分:0)

如果每个像素获得相同的值,则可能有多种原因。

a)您的图像在每个像素中具有相同的值

b)您不会在致电getRGB

之间更改x和y

c)您还读了其他内容,除了返回值getRGB

答案 1 :(得分:0)

在编辑时,通过在图像和缓冲图像之间进行转换存在一个问题。我忘了将图像绘制到缓冲区中。就是这样。