标签: blackberry blackberry-eclipse-plugin
我设法将亮度和对比度控制应用于图像。但在控制色调和饱和度方面存在问题。
我看到了两者的安卓代码,我看到他们使用过。
float[] HSV = new float[3]; Color.colorToHSV(pixels[index], HSV); HSV[0] = (float) Math.max(0.0,Math.min(HSV[0], 360.0));
我无法理解?
什么类似于BlackBerry中的卷积矩阵?