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

Packages that use MultiPixelRenderer
project.android.imageprocessing.filter.effect   
project.android.imageprocessing.filter.processing   
 

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

Subclasses of MultiPixelRenderer in project.android.imageprocessing.filter.effect
 class EmbossFilter
          Applies an embossing effect on the image intensity: The strength of the embossing, from 0.0 to 4.0, with 1.0 as the normal level
 class ToonFilter
          This uses Sobel edge detection to place a black border around objects, and then it quantizes the colors present in the image to give a cartoon-like quality to the image.
 

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

Subclasses of MultiPixelRenderer in project.android.imageprocessing.filter.processing
 class ConvolutionFilter
          A basic convolution filter implementation of the MultiPixelRenderer.
 class DirectionalNonMaximumSuppressionFilter
          Currently only used as part of the CannyEdgeDetectionFilter.
 class MedianFilter
          Takes the median value of the three color components, over a 3x3 area
 class MotionBlurFilter
          Applies a directional motion blur to an image blurSize: A multiplier for the blur size, ranging from 0.0 on up blurAngle: The angular direction of the blur, in degrees.
 class SharpenFilter
          Applies a sharpen filter to the image
 class WeakPixelInclusionFilter
          Currently only used as part of the CannyEdgeDetectionFilter