public class InterpolatePixel_PL_using_SB<T extends ImageGray> extends java.lang.Object implements InterpolatePixelMB<Planar<T>>
InterpolatePixelS which allows it to interpolate Planar inside
a InterpolatePixelMB. Performs the same calculations multiple times compared to a custom solution.| Constructor and Description |
|---|
InterpolatePixel_PL_using_SB(InterpolatePixelS<T> alg) |
| Modifier and Type | Method and Description |
|---|---|
void |
get_fast(float x,
float y,
float[] values)
Returns the interpolated pixel values at the specified location while assuming it is inside
the image far away from the border.
|
void |
get(float x,
float y,
float[] values)
Returns the interpolated pixel values at the specified location while taking in account
the image border.
|
ImageBorder<Planar<T>> |
getBorder()
Returns the class which handles the image border
|
int |
getFastBorderX()
Border around the image that fast interpolation cannot be called.
|
int |
getFastBorderY()
Border around the image that fast interpolation cannot be called.
|
Planar<T> |
getImage()
Returns the image which is being interpolated.
|
ImageType<Planar<T>> |
getImageType()
Type of image it can process
|
boolean |
isInFastBounds(float x,
float y)
Is the requested pixel inside the image boundary for which fast unsafe interpolation can be performed.
|
void |
setBorder(ImageBorder<Planar<T>> border)
Set's the class used to "read" pixels outside the image border.
|
void |
setImage(Planar<T> image)
Change the image that is being interpolated.
|
public InterpolatePixel_PL_using_SB(InterpolatePixelS<T> alg)
public void get(float x,
float y,
float[] values)
InterpolatePixelMBget in interface InterpolatePixelMB<Planar<T extends ImageGray>>x - Point's x-coordinate. x ≥ 0 && x < image.widthy - Point's y-coordinate. y ≥ 0 && y < image.heightvalues - Interpolated value across all bands.public void get_fast(float x,
float y,
float[] values)
InterpolatePixelMBInterpolatePixel.isInFastBounds(float, float) should return true.get_fast in interface InterpolatePixelMB<Planar<T extends ImageGray>>x - Point's x-coordinate.y - Point's y-coordinate.values - Interpolated value across all bands.public void setBorder(ImageBorder<Planar<T>> border)
InterpolatePixelsetBorder in interface InterpolatePixel<Planar<T extends ImageGray>>border - Class for reading outside the image borderpublic ImageBorder<Planar<T>> getBorder()
InterpolatePixelgetBorder in interface InterpolatePixel<Planar<T extends ImageGray>>public void setImage(Planar<T> image)
InterpolatePixelsetImage in interface InterpolatePixel<Planar<T extends ImageGray>>image - An image.public Planar<T> getImage()
InterpolatePixelgetImage in interface InterpolatePixel<Planar<T extends ImageGray>>public boolean isInFastBounds(float x,
float y)
InterpolatePixelisInFastBounds in interface InterpolatePixel<Planar<T extends ImageGray>>x - Point's x-coordinate.y - Point's y-coordinate.public int getFastBorderX()
InterpolatePixelgetFastBorderX in interface InterpolatePixel<Planar<T extends ImageGray>>public int getFastBorderY()
InterpolatePixelgetFastBorderY in interface InterpolatePixel<Planar<T extends ImageGray>>public ImageType<Planar<T>> getImageType()
InterpolatePixelgetImageType in interface InterpolatePixel<Planar<T extends ImageGray>>