Back to FabImage Library website
You are here: Start » Function Reference » Image » Image Basics » GetImagePixel_Interpolated
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Returns an interpolated single pixel of an image.
Applications: Sub-pixel sampling of an image.
Syntax
C++
C#
void fil::GetImagePixel_Interpolated ( const fil::Image& inImage, const fil::Point2D& inPoint, fil::InterpolationMethod::Type inInterpolation, fil::Pixel& outPixel, float& outValue )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inImage | const Image& | Input image | |
![]() |
inPoint | const Point2D& | Point on the input image to be accessed | |
![]() |
inInterpolation | InterpolationMethod::Type | Bilinear | |
![]() |
outPixel | Pixel& | Output pixel | |
![]() |
outValue | float& | Average pixel value |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input point exceeds dimensions of an input image in GetImagePixel_Interpolated. |
DomainError | Unknown interpolation method in GetImagePixel_Interpolated. |