Uses of Class
project.android.imageprocessing.filter.TwoPassMultiPixelFilter

Packages that use TwoPassMultiPixelFilter
project.android.imageprocessing.filter.processing   
 

Uses of TwoPassMultiPixelFilter in project.android.imageprocessing.filter.processing
 

Subclasses of TwoPassMultiPixelFilter in project.android.imageprocessing.filter.processing
 class BilateralBlurFilter
          A bilateral blur, which tries to blur similar color values while preserving sharp edges blurSize: A multiplier for the size of the blur, ranging from 0.0 on up distanceNormalizationFactor: A normalization factor for the distance between central color and sample color
 class BoxBlurFilter
          A hardware-accelerated 9-hit box blur of an image
 class DilationFilter
          This performs an image dilation operation, where the maximum intensity of the red channel in a rectangular neighborhood is used for the intensity of this pixel.
 class DilationRGBFilter
          This is the same as the DilationFilter, except that this acts on all color channels, not just the red channel.
 class ErosionFilter
          This performs an image erosion operation, where the minimum intensity of the red channel in a rectangular neighborhood is used for the intensity of this pixel.
 class ErosionRGBFilter
          This is the same as the ErosionFilter, except that this acts on all color channels, not just the red channel.
 class FastBlurFilter
          A hardware-accelerated 9-hit Gaussian blur of an image
 class GaussianBlurFilter
          A more generalized 3x3 Gaussian blur filter blurSize: A multiplier for the size of the blur, ranging from 0.0 on up
 class SingleComponentFastBlurFilter
          A modification of the FastBlurFilter to only operate on the red component
 class SingleComponentGaussianBlurFilter
          A modification of the GPUImageGaussianBlurFilter that operates only on the red component blurSize: A multiplier for the size of the blur, ranging from 0.0 on up