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

Packages that use MultiInputFilter
project.android.imageprocessing.filter   
project.android.imageprocessing.filter.blend   
project.android.imageprocessing.filter.colour   
project.android.imageprocessing.filter.effect   
project.android.imageprocessing.filter.processing   
 

Uses of MultiInputFilter in project.android.imageprocessing.filter
 

Subclasses of MultiInputFilter in project.android.imageprocessing.filter
 class CompositeFilter
          An extension of a MultiInputFilter.
 class CompositeMultiPixelFilter
          An extension of MultiInputPixelFilter.
 class MultiInputPixelFilter
          An extension of MultiInputFilter.
 

Uses of MultiInputFilter in project.android.imageprocessing.filter.blend
 

Subclasses of MultiInputFilter in project.android.imageprocessing.filter.blend
 class AddBlendFilter
          Applies an additive blend of two images
 class AlphaBlendFilter
          Blends the second image over the first, based on the second's alpha channel mix: The degree with which the second image overrides the first (0.0 - 1.0)
 class ChromaKeyBlendFilter
          Selectively replaces a color in the first image with the second image colour: The colour to match with thresholdSensitivity: How close a color match needs to exist to the target color to be replaced smoothing: How smoothly to blend for the color match
 class ColourBlendFilter
          Applies a color blend of two images
 class ColourBurnBlendFilter
          Applies a color burn blend of two images
 class ColourDodgeBlendFilter
          Applies a color dodge blend of two images
 class DarkenBlendFilter
          Applies a darken blend of two images.
 class DifferenceBlendFilter
          Applies a difference blend of two images.
 class DissolveBlendFilter
          Applies a dissolve blend of two images mix: The degree with which the second image overrides the first (0.0 - 1.0)
 class DivideBlendFilter
          Applies a division blend of two images
 class ExclusionBlendFilter
          Applies an exclusion blend of two images
 class HardLightBlendFilter
          Applies a hard light blend of two images
 class HueBlendFilter
          Applies a hue blend of two images
 class LightenBlendFilter
          Applies a lighten blend of two images.
 class LinearBurnBlendFilter
          Applies a linear burn blend of two images
 class LuminosityBlendFilter
          Applies a luminosity blend of two images
 class MaskFilter
          Applies a mask blend of two images.
 class MultiplyBlendFilter
          Applies a multiply blend of two images
 class NormalBlendFilter
          Applies a normal blend of two images
 class OverlayBlendFilter
          Applies a overlay blend of two images
 class SaturationBlendFilter
          Applies a saturation blend of two images
 class ScreenBlendFilter
          Applies a saturation blend of two images
 class SoftLightBlendFilter
          Applies a soft light blend of two images
 class SourceOverBlendFilter
          Applies a source over blend of two images
 class SubtractBlendFilter
          Applies a subtract blend of two images
 

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

Subclasses of MultiInputFilter in project.android.imageprocessing.filter.colour
 class AdaptiveThresholdFilter
          Determines the local luminance around a pixel, then turns the pixel black if it is below that local luminance and white if above.
 class AmatorkaFilter
          A photo filter based on a Photoshop action by Amatorka: http://amatorka.deviantart.com/art/Amatorka-Action-2-121069631 .
 class LookupFilter
          Uses an RGB color lookup image to remap the colors in an image.
 class MissEtikateFilter
          A photo filter based on a Photoshop action by Miss Etikate: http://miss-etikate.deviantart.com/art/Photoshop-Action-15-120151961.
 class ToneCurveFilter
          Adjusts the colors of an image based on spline curves for each color channel.
 

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

Subclasses of MultiInputFilter in project.android.imageprocessing.filter.effect
 class MosaicFilter
          This filter takes an input tileset, the tiles must ascend in luminance.
 class SketchFilter
          Converts video to look like a sketch.
 class ThresholdSketchFilter
          Same as the sketch filter, only the edges are thresholded instead of being grayscale
 

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

Subclasses of MultiInputFilter in project.android.imageprocessing.filter.processing
 class DirectionalSobelEdgeDetectionFilter
          Currently only used as part of the CannyEdgeDetectionFilter
 class GaussianBlurPositionFilter
          The inverse of the GaussianSelectiveBlurFilter, applying the blur only within a certain circle blurSize: A multiplier for the size of the blur, ranging from 0.0 on up blurCenter: Center for the blur blurRadius: Radius for the blur
 class GaussianSelectiveBlurFilter
          A Gaussian blur that preserves focus within a circular region blurSize: A multiplier for the size of the blur, ranging from 0.0 on up excludeCircleRadius: The radius of the circular area being excluded from the blur excludeCirclePoint: The center of the circular area being excluded from the blur excludeBlurSize: The size of the area between the blurred portion and the clear circle aspectRatio: The aspect ratio of the image, used to adjust the circularity of the in-focus region.
 class SobelEdgeDetectionFilter
          Sobel edge detection, with edges highlighted in white
 class ThresholdEdgeDetectionFilter
          Performs Sobel edge detection, but applies a threshold instead of giving gradual strength value threshold: Any edge above this threshold will be black, and anything below white.
 class TiltShiftFilter
          A simulated tilt shift lens effect blurSize: A multiplier for the size of the out-of-focus blur, ranging from 0.0 on up topFocusLevel: The normalized location of the top of the in-focus area in the image, this value should be lower than bottomFocusLevel bottomFocusLevel: The normalized location of the bottom of the in-focus area in the image, this value should be higher than topFocusLevel focusFallOffRate: The rate at which the image gets blurry away from the in-focus region
 class UnsharpMaskFilter
          Applies an unsharp mask blurSize: A multiplier for the underlying blur size, ranging from 0.0 on up intensity: The strength of the sharpening, from 0.0 on up