net.sourceforge.jiu.geometry
Class Mirror
java.lang.Object
net.sourceforge.jiu.ops.Operation
net.sourceforge.jiu.ops.ImageToImageOperation
net.sourceforge.jiu.geometry.Mirror
public class Mirror
- extends ImageToImageOperation
Mirrors images (leftmost column becomes rightmost column and vice versa, and so on).
Supported image types: IntegerImage
.
Usage example
PixelImage image = ...; // something implementing IntegerImage
Mirror mirror = new Mirror();
mirror.setInputImage(image);
mirror.process();
PixelImage mirroredImage = mirror.getOutputImage();
- Author:
- Marco Schmidt
Method Summary |
void |
process()
This method does the actual work of the operation. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Mirror
public Mirror()
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.)
Copyright © 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Marco Schmidt