Uses of Interface
org.jmage.filter.ImageFilter

Packages that use ImageFilter
org.jmage.filter   
org.jmage.filter.color   
org.jmage.filter.merge   
org.jmage.filter.size   
org.jmage.filter.spatial   
org.jmage.filterchain   
 

Uses of ImageFilter in org.jmage.filter
 

Classes in org.jmage.filter that implement ImageFilter
 class ConfigurableImageFilter
          ConfigurableImageFilter accepts and maintains Properties
 class NoOpFilter
          No Operation Filter for debugging purposes.
 class TwinResourceImageFilter
          TwinResourceImageFilter introduces a second image into the filter, used as an additional resource for filter operations.
 

Uses of ImageFilter in org.jmage.filter.color
 

Classes in org.jmage.filter.color that implement ImageFilter
 class BrightenFilter
          Brightens an RGB Image by a certain percentage.
 class ColorizeFilter
          Colorizes an existing RGB colored image with a specified color.
 class DarkenFilter
          Darkens an image by a certain percentage.
 class Index2RGBConverterFilter
          Converts an image into an RGB ComponentColorModel image using the colors on the indexed palette.
 class RGB2GreyScaleConverterFilter
          GreyscaleFilter turns triband RGB images into a single band grey scale image by measuring the luminance of each band using the standard ntsc conversion formula
luminance = 0.2989*red + 0.5870*green + 0.1140*blue.
 

Uses of ImageFilter in org.jmage.filter.merge
 

Classes in org.jmage.filter.merge that implement ImageFilter
 class BackgroundImageFilter
          Puts the image on a configured background image.
 class ImageOverlayFilter
          Overlays the image with another image.
 class TextOverlayFilter
          Overlays the image with a String.
 

Uses of ImageFilter in org.jmage.filter.size
 

Classes in org.jmage.filter.size that implement ImageFilter
 class BicubicResizeFilter
          Image resizing filter, using a high quality Bicubic resize algorithm.
 class BorderExtenderFilter
          BorderExtenderFilter extends the edges around an Image.
 class CropFilter
          CropFilter cuts off pixels and crops an image.
 class ExtendingRotationFilter
          ExtendingRotationFilter rotates images clockwise around the center axis.
 class NonExtendingRotationFilter
          NonExtendingRotationFilter rotates images clockwise around the center axis.
 class SmartResizeFilter
          SmartResizeFilter tries to do some intelligent cropping and resizing while maintaining the image's original pixel aspect ratio.
 

Uses of ImageFilter in org.jmage.filter.spatial
 

Classes in org.jmage.filter.spatial that implement ImageFilter
 class Convolution3x3Filter
          Convolution3x3 Filter applies a 3x3 filter convolution matrix to an image.
 class Convolution5x5Filter
          Convolution3x3 Filter applies a 3x3 filter convolution matrix to an image.
 class ConvolutionFilter
          Abstract base class for Convolution Filters
 class EdgeEnhancementFilter
          EdgeEnhancementFilter uses the Laplacian convolution matrix to highlight areas of rapid intensity change in the picture.
 class GaussianBlurFilter
          GaussianBlurFilter performs a Gaussian Blur on a 5x5 convolution matrix.
 class LowPassFilter
          LowPassFilter reduces detail in the image.
 class MeanFilter
          MeanFilter reduces speckles in the image.
 class SharpenFilter
          Basic image sharpening filter.
 class UltraSharpenFilter
          Ultra Strong image sharpening filter.
 class UnsharpMaskFilter
          UnsharpMaskFilter creates a blurred version of the original image, using the Mean Filter.
 

Uses of ImageFilter in org.jmage.filterchain
 

Methods in org.jmage.filterchain that return ImageFilter
protected  ImageFilter XmlFilterChainDeserializer.createFilter(java.lang.String filterName)
           
 

Methods in org.jmage.filterchain with parameters of type ImageFilter
 void FilterChain.addFilter(ImageFilter filter)
          Add a filter to the FilterChain at the end.
 void FilterChain.addFilter(ImageFilter filter, int position)
          Add a filter to the FilterChain at the given position.
 void FilterChain.removeFilter(ImageFilter filter)
          Removes a filter from a FilterChain.
 



Copyright © 2004-2008 Sourceforge. All Rights Reserved.