Uses of Class
net.sourceforge.jiu.ops.WrongParameterException
-
-
Uses of WrongParameterException in net.sourceforge.jiu.codecs
Methods in net.sourceforge.jiu.codecs that throw WrongParameterException Modifier and Type Method Description private voidIFFCodec. checkAndLoad()voidImageCodec. 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).voidImageCodec. checkImageResolution()If an image object was provided to be used for loading viaImageCodec.setImage(net.sourceforge.jiu.data.PixelImage), this method checks if its resolution is the same as the bounds' resolution.private voidPNMCodec. load()Loads an image from a PNM input stream.private voidPNMCodec. loadBilevelImage()private PixelImageIFFCodec. loadImage(DataInput in)Loads an image from given input stream in, regarding the compression type.private voidPalmCodec. loadImage(DataInput in)voidPalmCodec. process()private voidRASCodec. readHeader()private voidGIFCodec. save()private voidPNMCodec. save()private voidRASCodec. save()private voidRASCodec. saveHeader(PixelImage image) -
Uses of WrongParameterException in net.sourceforge.jiu.codecs.tiff
Methods in net.sourceforge.jiu.codecs.tiff that throw WrongParameterException Modifier and Type Method Description private voidTIFFCodec. load()Attempts to load an image from a file in the TIFF format.private voidTIFFCodec. load(TIFFImageFileDirectory ifd) -
Uses of WrongParameterException in net.sourceforge.jiu.color
Methods in net.sourceforge.jiu.color that throw WrongParameterException Modifier and Type Method Description private voidInvert. prepare(PixelImage in)voidInvert. 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 Modifier and Type Method Description voidBrightness. process()voidContrast. process()voidGammaCorrection. process()voidHueSaturationValue. process() -
Uses of WrongParameterException in net.sourceforge.jiu.color.analysis
Methods in net.sourceforge.jiu.color.analysis that throw WrongParameterException Modifier and Type Method Description voidHistogram1DCreator. process()voidHistogram3DCreator. process()voidMeanDifference. process() -
Uses of WrongParameterException in net.sourceforge.jiu.color.dithering
Methods in net.sourceforge.jiu.color.dithering that throw WrongParameterException Modifier and Type Method Description voidClusteredDotDither. process()voidErrorDiffusionDithering. process()Quantizes the input image, distributing quantization errors to neighboring pixels.voidOrderedDither. process() -
Uses of WrongParameterException in net.sourceforge.jiu.color.promotion
Methods in net.sourceforge.jiu.color.promotion that throw WrongParameterException Modifier and Type Method Description private voidPromotionGray16. prepare(PixelImage in)private voidPromotionGray8. prepare(PixelImage in)private voidPromotionPaletted8. prepare(PixelImage in)private voidPromotionRGB24. prepare(PixelImage in)private voidPromotionRGB48. prepare(PixelImage in)voidPromotionGray16. process()voidPromotionGray8. process()voidPromotionPaletted8. process()voidPromotionRGB24. process()voidPromotionRGB48. process() -
Uses of WrongParameterException in net.sourceforge.jiu.color.quantization
Methods in net.sourceforge.jiu.color.quantization that throw WrongParameterException Modifier and Type Method Description voidOctreeColorQuantizer. init()Creates an octree and prepares this quantizer so that colors can be mapped to palette index values.voidArbitraryPaletteQuantizer. process()Maps the input image to an output image, using the palette given to the constructor.voidMedianCutContourRemoval. process()voidMedianCutQuantizer. process()voidOctreeColorQuantizer. 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.voidPopularityQuantizer. process() -
Uses of WrongParameterException in net.sourceforge.jiu.color.reduction
Methods in net.sourceforge.jiu.color.reduction that throw WrongParameterException Modifier and Type Method Description static PixelImageRGBToGrayConversion. convert(PixelImage rgbImage)Static convenience method to convert an RGB image to a grayscale image.voidAutoDetectColorType. process()voidReduceRGB. process()voidReduceShadesOfGray. process()voidReduceToBilevelThreshold. process()private voidReduceToBilevelThreshold. process(GrayIntegerImage in, BilevelImage out)voidRGBToGrayConversion. process()private voidRGBToGrayConversion. process(Paletted8Image in)private voidRGBToGrayConversion. process(RGB24Image in)private voidRGBToGrayConversion. process(RGB48Image in) -
Uses of WrongParameterException in net.sourceforge.jiu.filters
Methods in net.sourceforge.jiu.filters that throw WrongParameterException Modifier and Type Method Description voidAreaFilterOperation. process()voidConvolutionKernelFilter. process()voidOilFilter. process() -
Uses of WrongParameterException in net.sourceforge.jiu.geometry
Methods in net.sourceforge.jiu.geometry that throw WrongParameterException Modifier and Type Method Description private voidCrop. checkBounds()voidCrop. process()voidFlip. process()voidMirror. process()voidResample. process()voidRotate180. process()voidRotate90Left. process()voidRotate90Right. process()voidScaleReplication. process()voidShear. process() -
Uses of WrongParameterException in net.sourceforge.jiu.ops
Methods in net.sourceforge.jiu.ops that throw WrongParameterException Modifier and Type Method Description voidImagesToImageOperation. ensureImagesHaveSameResolution()Checks if all images have the same resolution as given by their getWidth and getHeight methods.voidImageToImageOperation. 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.voidImagesToImageOperation. 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.voidImageToImageOperation. 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.voidLookupTableOperation. prepareImages()voidLookupTableOperation. process()voidOperation. process()This method does the actual work of the operation.
-