JIU 0.12.0 Homepage

Uses of Package
net.sourceforge.jiu.ops

Packages that use net.sourceforge.jiu.ops
net.sourceforge.jiu.apps Smaller and larger applications demonstrating how to use JIU.  
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.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.gui.awt Classes to interoperate with Java's first GUI toolkit, the AWT (Abstract Windowing Toolkit).  
net.sourceforge.jiu.ops The operation package, with basic functionality for all JIU classes that actually process images.  
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.apps
BatchProcessorOperation
          Abstract base class to do batch processing on files and complete directory trees.
Operation
           Base class for all operations.
ProgressListener
          This interface must be implemented by classes that want to be notified about progress of an image operation.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.codecs
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
OperationFailedException
          Exception class to indicate that an operation failed during the execution of the method Operation.process().
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.codecs.tiff
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
OperationFailedException
          Exception class to indicate that an operation failed during the execution of the method Operation.process().
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color.adjustment
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
LookupTableOperation
          An operation that replaces samples with values taken from a lookup table.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
OperationFailedException
          Exception class to indicate that an operation failed during the execution of the method Operation.process().
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color.analysis
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color.dithering
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color.promotion
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color.quantization
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
OperationFailedException
          Exception class to indicate that an operation failed during the execution of the method Operation.process().
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.color.reduction
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.filters
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.geometry
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.gui.awt
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
ProgressListener
          This interface must be implemented by classes that want to be notified about progress of an image operation.
 

Classes in net.sourceforge.jiu.ops used by net.sourceforge.jiu.ops
ImageToImageOperation
          An operation that acesses an input image and produces data for an output image.
MissingParameterException
          Exception class to indicate that an operation's parameter is missing (has not been specified by caller and there was no default value that could be used).
Operation
           Base class for all operations.
OperationFailedException
          Exception class to indicate that an operation failed during the execution of the method Operation.process().
ProgressListener
          This interface must be implemented by classes that want to be notified about progress of an image operation.
WrongParameterException
          Exception class to indicate that an operation's parameter is of the wrong type, does not fall into a valid interval or a similar mistake.
 


JIU 0.12.0 Homepage

Copyright © 2000, 2001, 2002, 2003, 2004 Marco Schmidt