画像にコントラストを適用しようとしていますが、それを行うための適切な式が見つかりません。私は多くの異なるサイトの公式を試しましたが、どれもうまくいきませんでした. 誰にも提案はありますか?
これが私の最新の試みです:
int r = Colors.red(pixel);
int g = Colors.green(pixel);
int b = Colors.blue(pixel);
float red = r / 255.0f;
float green = g / 255.0f;
float blue = b / 255.0f;
red = (((red - 0.5f) * amount) + 0.5f) * 255.0f;
green = (((green - 0.5f) * amount) + 0.5f) * 255.0f;
blue = (((blue - 0.5f) * amount) + 0.5f) * 255.0f;
int iR = (int)red;
iR = iR > 255 ? 255 : iR;
iR = iR < 0 ? 0 : iR;
int iG = (int)green;
iG = iG > 255 ? 255 : iG;
iG = iG < 0 ? 0 : iG;
int iB = (int)blue;
iB = iB > 255 ? 255 : iB;
iB = iB < 0 ? 0 : iB;
それはうまくいきませんでした。他に提案はありますか?