Getting Greyscale pixel value from RGB colourspace in Java using BufferedImage

时光怂恿深爱的人放手 提交于 2019-12-01 06:45:20

this isn't as simple as it sounds because there is no 100% correct answer for how to map a colour to greyscale.

the method i'd use is to convert RGB to HSL then 0 the S portion (and optionally convert back to RGB) but this might not be exactly what you want. (it is equivalent to the average of the highest and lowest rgb value so a little different to the average of all 3)

This tutorial shows 3 ways to do it:

By changing ColorSpace

ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
ColorConvertOp op = new ColorConvertOp(cs, null);
BufferedImage image = op.filter(bufferedImage, null);

By drawing to a grayscale BufferedImage

BufferedImage image = new BufferedImage(width, height,
    BufferedImage.TYPE_BYTE_GRAY);
Graphics g = image.getGraphics();
g.drawImage(colorImage, 0, 0, null);
g.dispose();

By using GrayFilter

ImageFilter filter = new GrayFilter(true, 50);
ImageProducer producer = new FilteredImageSource(colorImage.getSource(), filter);
Image image = this.createImage(producer);

Averaging sounds good, although Matlab rgb2gray uses weighted sum.

Check Matlab rgb2gray

UPDATE
I tried implementing Matlab method in Java, maybe i did it wrong, but the averaging gave better results.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!