public class FilterSequence<Input extends ImageSingleBand,Output extends ImageSingleBand> extends Object implements FilterImageInterface<Input,Output>
| Constructor and Description |
|---|
FilterSequence(FilterImageInterface<Input,Output> first,
FilterImageInterface<Output,Output>... sequence) |
| Modifier and Type | Method and Description |
|---|---|
int |
getHorizontalBorder()
How many pixels are not processed along the horizontal border.
|
Class<Input> |
getInputType()
Specifies the type of image it takes as input.
|
int |
getVerticalBorder()
How many pixels are not processed along the vertical border.
|
void |
process(Input input,
Output output)
Processes the input image and writes the results to the output image.
|
public FilterSequence(FilterImageInterface<Input,Output> first, FilterImageInterface<Output,Output>... sequence)
public void process(Input input, Output output)
FilterImageInterfaceprocess in interface FilterImageInterface<Input extends ImageSingleBand,Output extends ImageSingleBand>input - Input image.output - Output image.public int getHorizontalBorder()
FilterImageInterfacegetHorizontalBorder in interface FilterImageInterface<Input extends ImageSingleBand,Output extends ImageSingleBand>public int getVerticalBorder()
FilterImageInterfacegetVerticalBorder in interface FilterImageInterface<Input extends ImageSingleBand,Output extends ImageSingleBand>public Class<Input> getInputType()
FilterImageInterfacegetInputType in interface FilterImageInterface<Input extends ImageSingleBand,Output extends ImageSingleBand>Copyright © 2013. All Rights Reserved.