Uses of Class
net.sourceforge.jiu.ops.ImageToImageOperation
-
-
Uses of ImageToImageOperation in net.sourceforge.jiu.color
Subclasses of ImageToImageOperation in net.sourceforge.jiu.color Modifier and Type Class Description classInvertCreates an inverted (negated) version of an image. -
Uses of ImageToImageOperation in net.sourceforge.jiu.color.adjustment
Subclasses of ImageToImageOperation in net.sourceforge.jiu.color.adjustment Modifier and Type Class Description classBrightnessAdjusts the brightness of an image.classContrastAdjusts the contrast of an image.classEqualizeHistogramEqualize the image using histogram information separately for each channel.classGammaCorrectionCorrects the gamma of an image.classHueSaturationValueAdjusts saturation and value of a color image, optionally hue as well.classNormalizeHistogramNormalize the image using histogram information, separately for each channel. -
Uses of ImageToImageOperation in net.sourceforge.jiu.color.dithering
Subclasses of ImageToImageOperation in net.sourceforge.jiu.color.dithering Modifier and Type Class Description classClusteredDotDitherApply a clustered dot ordered dither to a grayscale image, converting it to a bilevel image in the process.classErrorDiffusionDitheringThis class is used to apply error diffusion dithering to images that are being reduced in their color depth.classOrderedDitherThis operation reduces the color depth of RGB truecolor images and grayscale images by applying ordered dithering. -
Uses of ImageToImageOperation in net.sourceforge.jiu.color.promotion
Subclasses of ImageToImageOperation in net.sourceforge.jiu.color.promotion Modifier and Type Class Description classPromotionGray16Converts BilevelImage and Gray8Image objects to Gray16Image objects.classPromotionGray8Converts BilevelImage objects to Gray8Image objects.classPromotionPaletted8classPromotionRGB24Converts several image types to RGB.classPromotionRGB48Converts several image types toRGB48Image. -
Uses of ImageToImageOperation in net.sourceforge.jiu.color.quantization
Subclasses of ImageToImageOperation in net.sourceforge.jiu.color.quantization Modifier and Type Class Description classArbitraryPaletteQuantizerA color quantizer that maps anRGBImageto any given palette.classMedianCutContourRemovalPerforms the Median Cut color quantization algorithm in combination with a contour removal algorithm.classMedianCutQuantizerPerforms the Median Cut color quantization algorithm for a given list of colors.classOctreeColorQuantizerPerforms the octree color quantization algorithm for a given RGB truecolor image.classPopularityQuantizerPerforms the popularity color quantization algorithm that maps an image to the colors occurring most frequently in the input image.classUniformPaletteQuantizerA color quantizer that maps to a palette which is equidistantly distributed in the RGB color cube. -
Uses of ImageToImageOperation in net.sourceforge.jiu.color.reduction
Subclasses of ImageToImageOperation in net.sourceforge.jiu.color.reduction Modifier and Type Class Description classReduceRGBReduces the color depth of RGB truecolor images.classReduceShadesOfGrayReduces the number of shades of gray of a grayscale image.classReduceToBilevelThresholdReduces aGrayIntegerImageto aBilevelImageby setting all values below a certain threshold value to black and everything else to white.classRGBToGrayConversionConverts RGB color images (both truecolor and paletted) to grayscale images. -
Uses of ImageToImageOperation in net.sourceforge.jiu.filters
Subclasses of ImageToImageOperation in net.sourceforge.jiu.filters Modifier and Type Class Description classAreaFilterOperationBase class for operations that convert images to images and determine an output sample by doing calculations on the input sample at the same position plus some neighboring samples.classConvolutionKernelFilterApplies a convolution kernel filter to an image.classMaximumFilterFilter operation that replaces each sample by the maximum value of itself and its neighbor samples.classMeanFilterApplies a mean filter that replaces each pixel by the mean of itself and its neighbors.classMedianFilterApplies a Median filter that replaces each pixel by the median of itself and its neighbors.classMinimumFilterFilter operation that replaces each sample by the minimum value of itself and its neighbors.classOilFilterApplies a filter that makes the image look like an oil painting. -
Uses of ImageToImageOperation in net.sourceforge.jiu.geometry
Subclasses of ImageToImageOperation in net.sourceforge.jiu.geometry Modifier and Type Class Description classCropCopies a rectangular area of one image to another image that is exactly as large as that rectangular area.classFlipFlips images (top row becomes bottom row and vice versa, and so on).classMirrorMirrors images (leftmost column becomes rightmost column and vice versa, and so on).classResampleResizes grayscale and truecolor images using filters.classRotate180Rotates images by 180 degrees.classRotate90LeftRotates images by 90 degrees counter-clockwise (to the left).classRotate90RightRotates images by 90 degrees clockwise (to the right).classScaleReplicationChanges the pixel resolution of an image by replicating (or dropping) pixels.classShearShears an image by a given angle. -
Uses of ImageToImageOperation in net.sourceforge.jiu.gui.awt
Methods in net.sourceforge.jiu.gui.awt with parameters of type ImageToImageOperation Modifier and Type Method Description voidAwtOperationProcessor. process(ImageToImageOperation op)This method can be called for ImageToImageOperation objects. -
Uses of ImageToImageOperation in net.sourceforge.jiu.ops
Subclasses of ImageToImageOperation in net.sourceforge.jiu.ops Modifier and Type Class Description classLookupTableOperationAn operation that replaces samples with values taken from a lookup table.
-