JIU 0.14.3

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

Packages that use MissingParameterException
net.sourceforge.jiu.codecs Provides classes to read images from and save them to files (or streams) in various file formats. 
net.sourceforge.jiu.codecs.jpeg Provides classes to read images from JPEG bitstreams. 
net.sourceforge.jiu.codecs.tiff Classes to handle the Tagged Image File Format (TIFF). 
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 lower color 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 MissingParameterException in net.sourceforge.jiu.codecs
 

Methods in net.sourceforge.jiu.codecs that throw MissingParameterException
protected  void ImageCodec.initModeFromIOObjects()
           
 void PNMCodec.process()
           
 void PNGCodec.process()
           
 void PCDCodec.process()
          Checks the parameter and loads an image.
 void PalmCodec.process()
           
 void IFFCodec.process()
           
 void GIFCodec.process()
           
 void BMPCodec.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.codecs.jpeg
 

Methods in net.sourceforge.jiu.codecs.jpeg that throw MissingParameterException
 void JPEGCodec.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.codecs.tiff
 

Methods in net.sourceforge.jiu.codecs.tiff that throw MissingParameterException
 void TIFFDecoderModifiedHuffman.initialize()
           
 void TIFFDecoderLogLuv.initialize()
           
 void TIFFDecoderDeflated.initialize()
           
 void TIFFDecoder.initialize()
          Check if all necessary parameters have been given to this decoder and initialize several internal fields from them.
 void TIFFCodec.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.color
 

Methods in net.sourceforge.jiu.color that throw MissingParameterException
 void Invert.process()
          Inverts the input image, reusing an output image if one has been specified.
 

Uses of MissingParameterException in net.sourceforge.jiu.color.adjustment
 

Methods in net.sourceforge.jiu.color.adjustment that throw MissingParameterException
 void HueSaturationValue.process()
           
 void GammaCorrection.process()
           
 void Contrast.process()
           
 void Brightness.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.color.analysis
 

Methods in net.sourceforge.jiu.color.analysis that throw MissingParameterException
static TextureAnalysis TextureAnalysis.compute(CoOccurrenceMatrix matrix)
          Create a TextureAnalysis operation with the results computed from a given matrix.
static TextureAnalysis TextureAnalysis.compute(IntegerImage image, int channelIndex)
          For one channel of the argument image, create a TextureAnalysis operation with all attributes
 void TextureAnalysis.process()
          Run over the input matrix and determine contrast, energy, entropy and homogeneity of that matrix.
 void MeanDifference.process()
           
 void Histogram3DCreator.process()
           
 void Histogram1DCreator.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.color.dithering
 

Methods in net.sourceforge.jiu.color.dithering that throw MissingParameterException
 void OrderedDither.process()
           
 void ErrorDiffusionDithering.process()
          Quantizes the input image, distributing quantization errors to neighboring pixels.
 void ClusteredDotDither.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.color.promotion
 

Methods in net.sourceforge.jiu.color.promotion that throw MissingParameterException
 void PromotionRGB48.process()
           
 void PromotionRGB24.process()
           
 void PromotionPaletted8.process()
           
 void PromotionGray8.process()
           
 void PromotionGray16.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.color.quantization
 

Methods in net.sourceforge.jiu.color.quantization that throw MissingParameterException
 void OctreeColorQuantizer.init()
          Creates an octree and prepares this quantizer so that colors can be mapped to palette index values.
 void PopularityQuantizer.process()
           
 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 MissingParameterException in net.sourceforge.jiu.color.reduction
 

Methods in net.sourceforge.jiu.color.reduction that throw MissingParameterException
static PixelImage RGBToGrayConversion.convert(PixelImage rgbImage)
          Static convenience method to convert an RGB image to a grayscale image.
 void RGBToGrayConversion.process()
           
 void ReduceToBilevelThreshold.process()
           
 void ReduceShadesOfGray.process()
           
 void ReduceRGB.process()
           
 void AutoDetectColorType.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.filters
 

Methods in net.sourceforge.jiu.filters that throw MissingParameterException
 void OilFilter.process()
           
 void ConvolutionKernelFilter.process()
           
 void AreaFilterOperation.process()
           
 

Uses of MissingParameterException in net.sourceforge.jiu.geometry
 

Methods in net.sourceforge.jiu.geometry that throw MissingParameterException
 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 MissingParameterException in net.sourceforge.jiu.ops
 

Methods in net.sourceforge.jiu.ops that throw MissingParameterException
 void ImageToImageOperation.ensureInputImageIsAvailable()
          If ImageToImageOperation.getInputImage() returns null this method throws a MissingParameterException complaining that an input image is missing.
 void LookupTableOperation.prepareImages()
           
 void Operation.process()
          This method does the actual work of the operation.
 void LookupTableOperation.process()
           
 


JIU 0.14.3

Copyright © 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Marco Schmidt