Uses of Class
com.jhlabs.image.WholeImageFilter

Packages that use WholeImageFilter
com.jhlabs.image   
 

Uses of WholeImageFilter in com.jhlabs.image
 

Subclasses of WholeImageFilter in com.jhlabs.image
 class BinaryFilter
          The superclass for some of the filters which work on binary images.
 class CausticsFilter
          A filter which simulates underwater caustics.
 class CellularFilter
          A filter which produces an image with a cellular texture.
 class ChromeFilter
          A filter which simulates chrome.
 class ContourFilter
          A filter which draws contours on an image at given brightness levels.
 class CrystallizeFilter
          A filter which applies a crystallizing effect to an image, by producing Voronoi cells filled with colours from the image.
 class DespeckleFilter
          A filter which removes noise from an image using a "pepper and salt" algorithm.
 class DiffusionFilter
          A filter which uses Floyd-Steinberg error diffusion dithering to halftone an image.
 class DilateFilter
          Given a binary image, this filter performs binary dilation, setting all added pixels to the given 'new' color.
 class EdgeFilter
          An edge-detection filter.
 class EmbossFilter
          A class to emboss an image.
 class EqualizeFilter
          A filter to perform auto-equalization on an image.
 class ErodeFilter
          Given a binary image, this filter performs binary erosion, setting all removed pixels to the given 'new' color.
 class Flush3DFilter
          This filter tries to apply the Swing "flush 3D" effect to the black lines in an image.
 class LevelsFilter
          A filter which allows levels adjustment on an image.
 class LifeFilter
          A filter which performs one round of the game of Life on an image.
 class LightFilter
          A filter which produces lighting and embossing effects.
 class MaximumFilter
          A filter which replcaes each pixel by the maximum of itself and its eight neightbours.
 class MedianFilter
          A filter which performs a 3x3 median operation.
 class MinimumFilter
          A filter which replcaes each pixel by the mimimum of itself and its eight neightbours.
 class OilFilter
          A filter which produces a "oil-painting" effect.
 class OutlineFilter
          Given a binary image, this filter converts it to its outline, replacing all interior pixels with the 'new' color.
 class PlasmaFilter
           
 class PointillizeFilter
           
 class QuantizeFilter
          A filter which quantizes an image to a set number of colors - useful for producing images which are to be encoded using an index color model.
 class QuiltFilter
           
 class ReduceNoiseFilter
          A filter which performs reduces noise by looking at each pixel's 8 neighbours, and if it's a minimum or maximum, replacing it by the next minimum or maximum of the neighbours.
 class ShadeFilter
           
 class ShapeFilter
           
 class SkeletonFilter
          A filter which reduces a binary image to a skeleton.
 class SmearFilter
           
 class WarpFilter
          A filter for warping images using the gridwarp algorithm.