Package net.sourceforge.jiu.color.adjustment

Examples of net.sourceforge.jiu.color.adjustment.Contrast


    {
      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();*/
 
View Full Code Here

TOP

Related Classes of net.sourceforge.jiu.color.adjustment.Contrast

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.