com.jhlabs.image

Class BlurFilter

Implemented Interfaces:
BufferedImageOp, Cloneable

public class BlurFilter
extends ConvolveFilter

A simple blur filter. You should probably use BoxBlurFilter instead.

Field Summary

protected static float[]
blurMatrix
A 3x3 convolution kernel for a simple blur.

Fields inherited from class com.jhlabs.image.ConvolveFilter

CLAMP_EDGES, WRAP_EDGES, ZERO_EDGES, alpha, kernel, premultiplyAlpha

Constructor Summary

BlurFilter()

Method Summary

String
toString()

Methods inherited from class com.jhlabs.image.ConvolveFilter

convolve, convolve, convolveH, convolveHV, convolveV, createCompatibleDestImage, filter, getBounds2D, getEdgeAction, getKernel, getPoint2D, getPremultiplyAlpha, getRenderingHints, getUseAlpha, setEdgeAction, setKernel, setPremultiplyAlpha, setUseAlpha, toString

Methods inherited from class com.jhlabs.image.AbstractBufferedImageOp

clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRGB, getRenderingHints, setRGB

Field Details

blurMatrix

protected static float[] blurMatrix
A 3x3 convolution kernel for a simple blur.

Constructor Details

BlurFilter

public BlurFilter()

Method Details

toString

public String toString()
Overrides:
toString in interface ConvolveFilter