GetImagePixel_Interpolated
Returns an interpolated single pixel of an image.
Applications:Sub-pixel sampling of an image.
Syntax
C++
Python
def GetImagePixel_Interpolated( inImage: Image, inPoint: Point2D, /, *, inInterpolation: InterpolationMethod = InterpolationMethod.Bilinear ) -> ( outPixel: Pixel, outValue: float )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inImage | Image | Input image | |
![]() |
inPoint | Point2D | Point on the input image to be accessed | |
![]() |
inInterpolation | InterpolationMethod | InterpolationMethod.Bilinear | |
![]() |
outPixel | Pixel | Output pixel | |
![]() |
outValue | float | Average pixel value |


