Class NearestNeighborPixel_F32

java.lang.Object
boofcv.alg.interpolate.NearestNeighborPixelS<GrayF32>
boofcv.alg.interpolate.impl.NearestNeighborPixel_F32
All Implemented Interfaces:
InterpolatePixel<GrayF32>, InterpolatePixelS<GrayF32>

@Generated("boofcv.alg.interpolate.impl.GenerateNearestNeighborPixel_SB") public class NearestNeighborPixel_F32 extends NearestNeighborPixelS<GrayF32>

Performs nearest neighbor interpolation to extract values between pixels in an image.

DO NOT MODIFY. Automatically generated code created by GenerateNearestNeighborPixel_SB

  • Constructor Details

    • NearestNeighborPixel_F32

      public NearestNeighborPixel_F32()
    • NearestNeighborPixel_F32

      public NearestNeighborPixel_F32(GrayF32 orig)
  • Method Details

    • setImage

      public void setImage(GrayF32 image)
      Description copied from interface: InterpolatePixel
      Change the image that is being interpolated.
      Specified by:
      setImage in interface InterpolatePixel<GrayF32>
      Overrides:
      setImage in class NearestNeighborPixelS<GrayF32>
      Parameters:
      image - An image.
    • get_fast

      public float get_fast(float x, float y)
      Description copied from interface: InterpolatePixelS
      Returns the interpolated pixel value at the specified location while assuming it is inside the image far away from the border. For any input point InterpolatePixel.isInFastBounds(float, float) should return true.
      Parameters:
      x - Point's x-coordinate.
      y - Point's y-coordinate.
      Returns:
      Interpolated intensity value.
    • get_border

      public float get_border(float x, float y)
    • get

      public float get(float x, float y)
      Description copied from interface: InterpolatePixelS
      Returns the interpolated pixel value at the specified location while checking to see if border conditions apply. If the requested pixel is outside the image border it will attempt to process it using or throw a null pointer exception of a border handler has not been specified.
      Parameters:
      x - Point's x-coordinate. x ≥ 0 && x < image.width or all values if border specified
      y - Point's y-coordinate. y ≥ 0 && y < image.height or all values if border specified
      Returns:
      Interpolated intensity value or NaN if it can't be interpolated.
    • copy

      public InterpolatePixelS<GrayF32> copy()
      Description copied from interface: InterpolatePixelS
      Creates a new instance of this interpolation method
    • getImageType

      public ImageType<GrayF32> getImageType()
      Description copied from interface: InterpolatePixel
      Type of image it can process