Uses of Class net.sourceforge.jiu.ops.Operation

Uses in package net.sourceforge.jiu.apps

Classes derived from net.sourceforge.jiu.ops.Operation

class
Loads image files and generates color index information for them.

Methods with parameter type net.sourceforge.jiu.ops.Operation

void
Adds all ProgressListener objects from the internal list of listeners to the argument operation.

Uses in package net.sourceforge.jiu.codecs.tiff

Classes derived from net.sourceforge.jiu.ops.Operation

class
A codec to read Tagged Image File Format (TIFF) image files.

Uses in package net.sourceforge.jiu.filters

Classes derived from net.sourceforge.jiu.ops.Operation

class
Base 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.
class
Applies a convolution kernel filter to an image.
class
Filter operation that replaces each sample by the maximum value of itself and its neighbor samples.
class
Applies a mean filter that replaces each pixel by the mean of itself and its neighbors.
class
Applies a Median filter that replaces each pixel by the median of itself and its neighbors.
class
Filter operation that replaces each sample by the minimum value of itself and its neighbors.
class
Applies a filter that makes the image look like an oil painting.

Uses in package net.sourceforge.jiu.color.dithering

Classes derived from net.sourceforge.jiu.ops.Operation

class
Apply a clustered dot ordered dither to a grayscale image, converting it to a bilevel image in the process.
class
This class is used to apply error diffusion dithering to images that are being reduced in their color depth.
class
This operation reduces the color depth of RGB truecolor images and grayscale images by applying ordered dithering.

Uses in package net.sourceforge.jiu.color.quantization

Classes derived from net.sourceforge.jiu.ops.Operation

class
A color quantizer that maps an RGBImage to any given palette.
class
Performs the Median Cut color quantization algorithm for a given list of colors.
class
Performs the octree color quantization algorithm for a given RGB truecolor image.
class
Performs the popularity color quantization algorithm that maps an image to the colors occurring most frequently in the input image.
class
A color quantizer that maps to a palette which is equidistantly distributed in the RGB color cube.

Uses in package net.sourceforge.jiu.color.promotion

Classes derived from net.sourceforge.jiu.ops.Operation

class
Converts BilevelImage and Gray8Image objects to Gray16Image objects.
class
Converts BilevelImage objects to Gray8Image objects.
class
Converts BilevelImage and Gray8Image objects to Paletted8Image objects.
class
Converts several image types to RGB.
class
Converts several image types to RGB48Image.

Uses in package net.sourceforge.jiu.geometry

Classes derived from net.sourceforge.jiu.ops.Operation

class
Copies a rectangular area of one image to another image that is exactly as large as that rectangular area.
class
Flips images (top row becomes bottom row and vice versa, and so on).
class
Mirrors images (leftmost column becomes rightmost column and vice versa, and so on).
class
Resizes grayscale and truecolor images using filters.
class
Rotates images by 180 degrees.
class
Rotates images by 90 degrees counter-clockwise (to the left).
class
Rotates images by 90 degrees clockwise (to the right).
class
Changes the pixel resolution of an image by replicating (or dropping) pixels.
class
Shears an image by a given angle.

Uses in package net.sourceforge.jiu.codecs

Classes derived from net.sourceforge.jiu.ops.Operation

class
A codec to read and write Windows BMP image files.
class
A codec to write Compuserve GIF (Graphics Interchange Format) files.
class
A codec to read Amiga IFF image files.
class
The base class for image codecs, operations to read images from or write them to streams.
class
A codec to read and write image files in the native image file format of Palm OS, an operating system for handheld devices.
class
A codec to read Kodak Photo-CD (image pac) image files.
class
A codec to read and write Portable Anymap (PNM) image files.
class
A codec to read images from Photoshop PSD files.
class
A codec to read and write Sun Raster (RAS) image files.

Uses in package net.sourceforge.jiu.color

Classes derived from net.sourceforge.jiu.ops.Operation

class
Creates an inverted (negated) version of an image.

Uses in package net.sourceforge.jiu.codecs.jpeg

Classes derived from net.sourceforge.jiu.ops.Operation

class
A codec for the JPEG file format.

Uses in package net.sourceforge.jiu.ops

Classes derived from net.sourceforge.jiu.ops.Operation

class
An operation that takes several input images and produces one output image.
class
An operation that acesses an input image and produces data for an output image.
class
An operation that replaces samples with values taken from a lookup table.

Uses in package net.sourceforge.jiu.color.reduction

Classes derived from net.sourceforge.jiu.ops.Operation

class
Detects the minimum (in terms of memory) color type of an image.
class
Reduces the color depth of RGB truecolor images.
class
Reduces the number of shades of gray of a grayscale image.
class
Reduces a GrayIntegerImage to a BilevelImage by setting all values below a certain threshold value to black and everything else to white.
class
Converts RGB color images (both truecolor and paletted) to grayscale images.

Uses in package net.sourceforge.jiu.color.analysis

Classes derived from net.sourceforge.jiu.ops.Operation

class
This class creates one-dimensional histograms for images with integer samples.
class
This class creates three-dimensional histograms for images with integer samples.
class
This operation determines the mean difference between two images.
class
This class determines a number of properties for a given co-occurrence matrix.

Uses in package net.sourceforge.jiu.color.adjustment

Classes derived from net.sourceforge.jiu.ops.Operation

class
Adjusts the brightness of an image.
class
Adjusts the contrast of an image.
class
Equalize the image using histogram information separately for each channel.
class
Corrects the gamma of an image.
class
Adjusts saturation and value of a color image, optionally hue as well.
class
Normalize the image using histogram information, separately for each channel.