我想创建一个应用程序,它将对比度应用于图像,然后在ImageView中显示该图像。我找到了this示例代码,但它似乎无法正常工作。应用对比后,它只会让一切变得绿色。以下是我的计划中的内容:
public class ImageImprovementActivity extends ActionBarActivity {
private ImageView imageView;
private Button buttonLoad;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_image_improvement);
buttonLoad = (Button) findViewById(R.id.buttonLoad);
imageView = (ImageView) findViewById(R.id.imageView);
imageView.setImageBitmap(getImage());
buttonLoad.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
imageView.setImageBitmap(applyContrast(((BitmapDrawable)imageView.getDrawable()).getBitmap(), 0.3));
}
});
}
private Bitmap getImage() {
final File imgFile = new File(Environment.getExternalStorageDirectory() + "/testImage2.jpg" );
if (imgFile.exists()) {
Bitmap bmp = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
return bmp;
}
return null;
}
private Bitmap applyContrast(Bitmap image, double contrastVal) {
final int width = image.getWidth();
final int height = image.getHeight();
final Bitmap contrastedImage = Bitmap.createBitmap(width, height, image.getConfig());
int A, R, G, B;
int pixel;
double contrast = Math.pow((100 + contrastVal) / 100, 2);
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
pixel = image.getPixel(x, y);
A = Color.alpha(pixel);
R = Color.red(pixel);
R = (int)(((((R / 255.0) - 0.5) * contrast) + 0.5) * 255.0);
R = truncate(R);
G = Color.green(pixel);
G = (int)(((((G / 255.0) - 0.5) * contrast) + 0.5) * 255.0);
G = truncate(R);
B = Color.blue(pixel);
B = (int)(((((B / 255.0) - 0.5) * contrast) + 0.5) * 255.0);
B = truncate(B);
Log.i("ImageImprove", A + " " + R + " " + " " + G + " " + B);
contrastedImage.setPixel(x, y, Color.argb(A, R, G, B));
}
}
return contrastedImage;
}
private int truncate(int value) {
if (value < 0) {
return 0;
} else if (value > 255) {
return 255;
}
return value;
}
}
你知道问题可能是什么吗?另外,如果你有另一个例子,请发布它,它可能是有用的。
修改
此外,无论我在contrastVal
applyContrast(Bitmap image, double contrastVal)
提供什么价值,每次结果似乎都是相同的
EDIT2
对不起,实际上在更改contrastVal
时存在明显的差异。图像仍然是绿色的..
EDIT3 我正在添加一些图像,以便您可以更清楚地了解问题所在。
这是原始图片:
以下是对比度对比1:
答案 0 :(得分:1)
您的代码中有一点错误(复制错误?)。变化
G = truncate(R);
要
G = truncate(G);