Namespace for collection of image extension functions from the Foundation package. More...
Functions | |
template<class RANGE > | |
TypedRange< void, double, RANGE >::type | InitAOI (Image &image, Rect< int > aoi, const RANGE &values) |
Initialize the planes of AOI (area of interest) in this image to different values. More... | |
void | InitAOI (Image &image, Rect< int > aoi, double value) |
Initialize the planes of AOI (area of interest) in this image to a value. More... | |
template<class RANGE > | |
TypedRange< void, double, RANGE >::type | InitImage (Image &image, const RANGE &values) |
Initialize the planes of this image to different values. More... | |
void | InitImage (Image &image, double value) |
Initialize the planes of this image to a value. More... | |
std::unique_ptr< Image > | SubImage (const Image &image, Area2D aoi, Interpolation interpolation=Interpolation::Linear) |
Extract the content of an AOI (area of interest) into a new image. More... | |
Namespace for collection of image extension functions from the Foundation package.
|
inline |
Initialize the planes of AOI (area of interest) in this image to different values.
[in] | image | Image to be initialized. |
[in] | aoi | Area of interest to initialize. |
[in] | values | Values to which the various planes are to be initialized (needs at least one value per plane). |
Any | exception derived from std::exception including CvbException. |
Initialize the planes of AOI (area of interest) in this image to a value.
[in] | image | Image to be initialized. |
[in] | aoi | Area of interest to initialize. |
[in] | value | Values to which the various planes are to be initialized. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Initialize the planes of this image to different values.
[in] | image | Image to be initialized. |
[in] | values | Values to which the various planes are to be initialized (needs at least one value per plane). |
Any | exception derived from std::exception including CvbException. |
|
inline |
Initialize the planes of this image to a value.
[in] | image | Image to be initialized. |
[in] | value | Values to which the various planes are to be initialized. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Extract the content of an AOI (area of interest) into a new image.
[in] | image | Image to work from. |
[in] | aoi | Area of interest to be extracted. |
[in] | interpolation | Interpolation mode to be used. |
Any | exception derived from std::exception including CvbException. |