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

Packages that use GroupFilter
project.android.imageprocessing.filter.colour   
project.android.imageprocessing.filter.effect   
project.android.imageprocessing.filter.processing   
 

Uses of GroupFilter in project.android.imageprocessing.filter.colour
 

Subclasses of GroupFilter in project.android.imageprocessing.filter.colour
 class SoftEleganceFilter
          Another lookup-based color remapping filter.
 

Uses of GroupFilter in project.android.imageprocessing.filter.effect
 

Subclasses of GroupFilter in project.android.imageprocessing.filter.effect
 class SmoothToonFilter
          This uses a similar process as the GPUImageToonFilter, only it precedes the toon effect with a Gaussian blur to smooth out noise.
 

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

Subclasses of GroupFilter in project.android.imageprocessing.filter.processing
 class CannyEdgeDetectionFilter
          This uses the full Canny process to highlight one-pixel-wide edges blurSize: A multiplier for the prepass blur size, ranging from 0.0 on up upperThreshold: Any edge with a gradient magnitude above this threshold will pass and show up in the final result lowerThreshold: Any edge with a gradient magnitude below this threshold will fail and be removed from the final result
 class ClosingFilter
          This performs a dilation on the red channel of an image, followed by an erosion of the same radius.
 class ClosingRGBFilter
          This is the same as the ClosingFilter, except that this acts on all color channels, not just the red channel.
 class LanczosResamplingFilter
          This lets you up- or downsample an image using Lanczos resampling, which results in noticeably better quality than the standard linear or trilinear interpolation.
 class OpeningFilter
          This performs an erosion on the red channel of an image, followed by a dilation of the same radius.
 class OpeningRGBFilter
          This is the same as the OpeningFilter, except that this acts on all color channels, not just the red channel.