|
JIU 0.12.0 Homepage | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WrongParameterException | |
net.sourceforge.jiu.codecs | Provides classes to read images from and save them to files (or streams) in various file formats. |
net.sourceforge.jiu.color | Contains color-related operations that did not fit into one of the subpackages |
net.sourceforge.jiu.color.adjustment | Contains operations that modify pixel colors independent from other pixels |
net.sourceforge.jiu.color.analysis | Contains classes that analyze pixel or sample values and thus determine certain image properties |
net.sourceforge.jiu.color.dithering | Classes for conversion between color spaces. |
net.sourceforge.jiu.color.promotion | Classes to convert JIU image objects to other image types that require more memory. |
net.sourceforge.jiu.color.quantization | Classes to perform color image quantization, the reduction of the number of unique colors in an image. |
net.sourceforge.jiu.color.reduction |
Classes to convert images to a lowercolor type. |
net.sourceforge.jiu.filters | Various image filters that produce an output image from an input image, mostly reading a pixel and its neighbors in the input image to determine the pixel in the output image |
net.sourceforge.jiu.geometry | Operations to change the geometry of an image, mirroring it horizontally and vertically, shearing, scaling and rotating it |
net.sourceforge.jiu.ops | The operation package, with basic functionality for all JIU classes that actually process images. |
Uses of WrongParameterException in net.sourceforge.jiu.codecs |
Methods in net.sourceforge.jiu.codecs that throw WrongParameterException | |
void |
PalmCodec.process()
|
void |
ImageCodec.checkBounds(int width,
int height)
If bounds were defined for this codec, this method tests if the bounds rectangle fits into the rectangle (0, 0) / (width - 1, height - 1) .
|
void |
ImageCodec.checkImageResolution()
If an image object was provided to be used for loading via ImageCodec.setImage(net.sourceforge.jiu.data.PixelImage) ,
this method checks if its resolution is the same as the bounds' resolution.
|
Uses of WrongParameterException in net.sourceforge.jiu.color |
Methods in net.sourceforge.jiu.color that throw WrongParameterException | |
void |
Invert.process()
Inverts the input image, reusing an output image if one has been specified. |
Uses of WrongParameterException in net.sourceforge.jiu.color.adjustment |
Methods in net.sourceforge.jiu.color.adjustment that throw WrongParameterException | |
void |
HueSaturationValue.process()
|
void |
GammaCorrection.process()
|
void |
Contrast.process()
|
void |
Brightness.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.color.analysis |
Methods in net.sourceforge.jiu.color.analysis that throw WrongParameterException | |
void |
MeanDifference.process()
|
void |
Histogram3DCreator.process()
|
void |
Histogram1DCreator.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.color.dithering |
Methods in net.sourceforge.jiu.color.dithering that throw WrongParameterException | |
void |
OrderedDither.process()
|
void |
ErrorDiffusionDithering.process()
Quantizes the input image, distributing quantization errors to neighboring pixels. |
void |
ClusteredDotDither.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.color.promotion |
Methods in net.sourceforge.jiu.color.promotion that throw WrongParameterException | |
void |
PromotionRGB48.process()
|
void |
PromotionRGB24.process()
|
void |
PromotionPaletted8.process()
|
void |
PromotionGray8.process()
|
void |
PromotionGray16.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.color.quantization |
Methods in net.sourceforge.jiu.color.quantization that throw WrongParameterException | |
void |
PopularityQuantizer.process()
|
void |
OctreeColorQuantizer.init()
Creates an octree and prepares this quantizer so that colors can be mapped to palette index values. |
void |
OctreeColorQuantizer.process()
Initializes an octree, reduces it have as many leaves (or less) as the desired palette size and maps the original image to the newly-created palette. |
void |
MedianCutQuantizer.process()
|
void |
MedianCutContourRemoval.process()
|
void |
ArbitraryPaletteQuantizer.process()
Maps the input image to an output image, using the palette given to the constructor. |
Uses of WrongParameterException in net.sourceforge.jiu.color.reduction |
Methods in net.sourceforge.jiu.color.reduction that throw WrongParameterException | |
void |
RGBToGrayConversion.process()
|
void |
ReduceToBilevelThreshold.process()
|
void |
ReduceShadesOfGray.process()
|
void |
ReduceRGB.process()
|
void |
AutoDetectColorType.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.filters |
Methods in net.sourceforge.jiu.filters that throw WrongParameterException | |
void |
OilFilter.process()
|
void |
ConvolutionKernelFilter.process()
|
void |
AreaFilterOperation.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.geometry |
Methods in net.sourceforge.jiu.geometry that throw WrongParameterException | |
void |
Shear.process()
|
void |
ScaleReplication.process()
|
void |
Rotate90Right.process()
|
void |
Rotate90Left.process()
|
void |
Rotate180.process()
|
void |
Resample.process()
|
void |
Mirror.process()
|
void |
Flip.process()
|
void |
Crop.process()
|
Uses of WrongParameterException in net.sourceforge.jiu.ops |
Methods in net.sourceforge.jiu.ops that throw WrongParameterException | |
void |
Operation.process()
This method does the actual work of the operation. |
void |
LookupTableOperation.prepareImages()
|
void |
LookupTableOperation.process()
|
void |
ImageToImageOperation.ensureImagesHaveSameResolution()
If both an input and an output image have been specified (both non-null), this method compares their width and height properties and throws an exception if the two images do not have the same resolution. |
void |
ImageToImageOperation.ensureOutputImageResolution(int width,
int height)
If an output image has been specified this method will compare its resolution with the argument resolution and throw an exception if the resolutions differ. |
void |
ImagesToImageOperation.ensureImagesHaveSameResolution()
Checks if all images have the same resolution as given by their getWidth and getHeight methods. |
void |
ImagesToImageOperation.ensureOutputImageResolution(int width,
int height)
If an output image has been specified this method will compare its resolution with the argument resolution and throw an exception if the resolutions differ. |
|
JIU 0.12.0 Homepage | ||||||||||
PREV NEXT | FRAMES NO FRAMES |