Package net.sourceforge.jiu.geometry
Class Rotate180
java.lang.Object
net.sourceforge.jiu.ops.Operation
net.sourceforge.jiu.ops.ImageToImageOperation
net.sourceforge.jiu.geometry.Rotate180
Rotates images by 180 degrees.
The result is the same as a a
Flip
operation followed by a Mirror
operation (or vice versa).
Input image must implement IntegerImage
.
Usage example
Rotate180 rotate = new Rotate180(); rotate.setInputImage(image); // something implementing IntegerImage rotate.process(); PixelImage rotatedImage = rotate.getOutputImage();
- Author:
- Marco Schmidt
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
process()
This method does the actual work of the operation.private void
process
(IntegerImage in, IntegerImage out) 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
-
Constructor Details
-
Rotate180
public Rotate180()
-
-
Method Details
-
process
-
process
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 classOperation
- Throws:
MissingParameterException
- if any mandatory parameter was not given to the operationWrongParameterException
- if at least one of the input parameters was not initialized appropriately (values out of the valid interval, etc.)
-