我的问题与上一个问题有关: Count the number of colors of images
有没有办法计算颜色之间的差异(例如亮度)? 如果两种颜色之间的差异太小,它将自动视为1种颜色而不是两种颜色。通过这种方式,人们对图像颜色数量的感知将与计算机的数量更加接近。
由于
答案 0 :(得分:1)
答案 1 :(得分:0)
事实上你可以通过以下方式获得亮度:
luminance = (int) (redValue + greenValue + blueValue);
要获得主要想法,请使用redValue,greenValues和blueValue Check this Picture.java
来自 Barbara Ericson的代码ericson@cc.gatech.edu