JIU 0.12.0 Homepage

net.sourceforge.jiu.geometry
Class Rotate90Left

java.lang.Object
  extended bynet.sourceforge.jiu.ops.Operation
      extended bynet.sourceforge.jiu.ops.ImageToImageOperation
          extended bynet.sourceforge.jiu.geometry.Rotate90Left

public class Rotate90Left
extends ImageToImageOperation

Rotates images by 90 degrees counter-clockwise (to the left). Input image must implement IntegerImage.

Usage example

 Rotate90Left rotate = new Rotate90Left();
 rotate.setInputImage(image);
 rotate.process();
 PixelImage rotatedImage = rotate.getOutputImage();
 

Author:
Marco Schmidt

Constructor Summary
Rotate90Left()
           
 
Method Summary
 void process()
          This method does the actual work of the operation.
 
Methods inherited from class net.sourceforge.jiu.ops.ImageToImageOperation
canInputAndOutputBeEqual, ensureImagesHaveSameResolution, ensureInputImageIsAvailable, ensureOutputImageResolution, getInputImage, getOutputImage, setCanInputAndOutputBeEqual, setInputImage, setOutputImage
 
Methods inherited from class net.sourceforge.jiu.ops.Operation
addProgressListener, addProgressListeners, getAbort, removeProgressListener, setAbort, setProgress, setProgress
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Rotate90Left

public Rotate90Left()
Method Detail

process

public void process()
             throws MissingParameterException,
                    WrongParameterException
Description copied from class: Operation
This method does the actual work of the operation. It must be called after all parameters have been given to the operation object.

Overrides:
process in class Operation
Throws:
MissingParameterException - if any mandatory parameter was not given to the operation
WrongParameterException - if at least one of the input parameters was not initialized appropriately (values out of the valid interval, etc.)

JIU 0.12.0 Homepage

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