Uses of Class
com.meltingice.caman.CamanFilter

Packages that use CamanFilter
com.meltingice.caman   
com.meltingice.caman.filters   
 

Uses of CamanFilter in com.meltingice.caman
 

Methods in com.meltingice.caman that return CamanFilter
 CamanFilter CamanJ.filter(java.lang.String name)
          Loads a filter and returns it so that its parameters (if any) can be set.
 CamanFilter CamanFilter.set(java.lang.Object param)
          Set a param for this filter.
 CamanFilter CamanFilter.set(java.lang.Object[] paramArr)
          Set an array of params for easier readability/simplicity
 

Constructor parameters in com.meltingice.caman with type arguments of type CamanFilter
CamanRenderer(Image image, java.util.LinkedList<CamanFilter> filters)
           
 

Uses of CamanFilter in com.meltingice.caman.filters
 

Subclasses of CamanFilter in com.meltingice.caman.filters
 class Brightness
          Adjusts the brightness of the image Params: (int)
 class Channels
          Lets you modify the intensity of any combination of red, green or blue color channels independently.
 class Clip
          Clips a color to max values when it falls outside of the specified range.
 class Colorize
           
 class Contrast
          Adjusts the contrast of the image.
 class Curves
          Curves implementation loosely based off of Photoshop's similarly named feature.
 class Exposure
           
 class Gamma
          Applies a gamma adjustment to the image.
 class GaussianBlur
          Applies a gaussian blur to the image.
 class Greyscale
          Converts the image to an accurate greyscale representation.
 class Hue
          Adjusts the hue of the image.
 class Invert
          Inverts all colors in the image.
 class Noise
          Applies a variable amount of pseudorandom noise to an image.
 class Saturation
          Adjusts the saturation of the image.
 class Sepia
          Applies a variable strength sepia filter to the image.
 class Sharpen
          Sharpens an image by a variable amount using convolution
 class Vibrance
          Adjusts the vibrance of the colors in the image.