public abstract class ImageDistortCache_SB<Input extends ImageSingleBand,Output extends ImageSingleBand> extends java.lang.Object implements ImageDistort<Input,Output>
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
dirty |
protected Output |
dstImg |
protected boolean |
renderAll |
protected Input |
srcImg |
| Constructor and Description |
|---|
ImageDistortCache_SB(InterpolatePixelS<Input> interp)
Specifies configuration parameters
|
| Modifier and Type | Method and Description |
|---|---|
void |
apply(Input srcImg,
Output dstImg)
Applies the transform to the entire destination image.
|
void |
apply(Input srcImg,
Output dstImg,
int dstX0,
int dstY0,
int dstX1,
int dstY1)
Applies the transform to only the specified region inside the destination image.
|
void |
applyOnlyInside() |
protected abstract void |
assign(int indexDst,
float value) |
boolean |
getRenderAll()
Returns the render all flag
|
void |
renderAll() |
void |
setModel(PixelTransform_F32 dstToSrc)
Specifies how pixel coordinates are transformed from the destination
to source images.
|
void |
setRenderAll(boolean renderAll)
Specifies if the entire output image should be rendered, even if mapping to the source image is outside
the source image.
|
protected boolean renderAll
protected Input extends ImageSingleBand srcImg
protected Output extends ImageSingleBand dstImg
protected boolean dirty
public ImageDistortCache_SB(InterpolatePixelS<Input> interp)
interp - Interpolation algorithmpublic void setModel(PixelTransform_F32 dstToSrc)
ImageDistortsetModel in interface ImageDistort<Input extends ImageSingleBand,Output extends ImageSingleBand>dstToSrc - Pixel coordinate transformation.public void apply(Input srcImg, Output dstImg)
ImageDistortapply in interface ImageDistort<Input extends ImageSingleBand,Output extends ImageSingleBand>srcImg - Input image. Not modified.dstImg - Output image. Modified.public void apply(Input srcImg, Output dstImg, int dstX0, int dstY0, int dstX1, int dstY1)
ImageDistortapply in interface ImageDistort<Input extends ImageSingleBand,Output extends ImageSingleBand>srcImg - Input image. Not modified.dstImg - Output image. Modified.dstX0 - Left most crop boundary. Inclusive.dstY0 - Top most crop boundary. Inclusive.dstX1 - Right most crop boundary. Exclusive.dstY1 - Bottom most crop boundary. Exclusive.public void renderAll()
public void applyOnlyInside()
protected abstract void assign(int indexDst,
float value)
public void setRenderAll(boolean renderAll)
ImageDistortsetRenderAll in interface ImageDistort<Input extends ImageSingleBand,Output extends ImageSingleBand>renderAll - true to render all pixels or false only ones inside the source imagepublic boolean getRenderAll()
ImageDistortgetRenderAll in interface ImageDistort<Input extends ImageSingleBand,Output extends ImageSingleBand>