{
return img;
}
try
{
Contrast con = new Contrast();
con.setInputImage(img);
con.setContrast(contrastChange);
con.process();
return con.getOutputImage();
/* HueSaturationValue hsv = new HueSaturationValue();
hsv.setInputImage(img);
hsv.setSaturationValue(30, 0);
hsv.process();
return hsv.getOutputImage();*/