Object implementing the non linear polynomially approximated transform implemented in the CVB Foundation package. More...
#include <cvb/foundation/transform_2d.hpp>
Public Member Functions | |
NonLinearTransformation (const String &fileName) | |
Load a saved transformation from a file. | |
NonLinearTransformation (NonLinearTransformation &&) noexcept=default | |
Move constructor. | |
NonLinearTransformation & | operator= (NonLinearTransformation &&) noexcept=default |
Move assignment operator. | |
void * | Handle () const noexcept |
Classic API NLTRANSFORMATION handle. | |
int | Order () const noexcept |
Gets the transformation order. | |
std::vector< double > | CoefficientsX () const |
Return an array of the coefficients used for the transformation of x coordinates. | |
std::vector< double > | CoefficientsY () const |
Return an array of the coefficients used for the transformation of y coordinates. | |
std::vector< double > | CoefficientsXInverse () const |
Return an array of the coefficients used for the inverse transformation of x coordinates. | |
std::vector< double > | CoefficientsYInverse () const |
Return an array of the coefficients used for the inverse transformation of x coordinates. | |
void | Save (const String &fileName) const |
Write the transformation to a file. | |
std::unique_ptr< Image > | Transform (const Image &image, Size2D< int > targetSize, Point2D< int > targetOffset) |
Transform an image with this nonlinear transformation. | |
Point2D< double > | Transform (Point2D< double > point) |
Transform a point with this nonlinear transformation. | |
Rect< double > | Transform (Rect< double > rect) |
Transform a rect with this nonlinear transformation. | |
template<class RANGE> | |
TypedRange< std::vector< Point2D< double > >, Point2D< double >, RANGE >::type | Transform (const RANGE &points) |
Transform a sequence of points with this nonlinear transformation. | |
std::unique_ptr< Image > | InverseTransform (const Image &image, Size2D< int > targetSize, Point2D< int > targetOffset) |
Back transform an image with this nonlinear transformation. | |
Point2D< double > | InverseTransform (Point2D< double > point) |
Back transform a point with this nonlinear transformation. | |
template<class RANGE> | |
TypedRange< std::vector< Point2D< double > >, Point2D< double >, RANGE >::type | InverseTransform (const RANGE &points) |
Back transform a sequence of points with this nonlinear transformation. | |
Static Public Member Functions | |
static std::unique_ptr< NonLinearTransformation > | Load (const String &fileName) |
Load a saved transformation from a file. | |
static std::unique_ptr< NonLinearTransformation > | FromHandle (HandleGuard< NonLinearTransformation > &&guard) |
Creates transformation from a classic API handle. | |
template<class RANGE> | |
static TypedRange< std::unique_ptr< NonLinearTransformation >, Point2D< double >, RANGE >::type | FromPositionLists (const RANGE &originalPixels, const RANGE &transformedPixels, int order, CreationProgress progressCallback=CreationProgress()) |
Create a non linear transformation that - approximately - matches the set of originalPixels to the set of transformedPixels. | |
static std::unique_ptr< NonLinearTransformation > | FromCalibrationPattern (const ImagePlane &plane, CalibrationPatternStyle style, CalibrationPatternContrast contrast, int gridSpacing, int minContrast, double maxRatio, int order, Area2D aoi, CreationProgress progressCallback=CreationProgress()) |
Create a new transformation object by automatically extracting the pixel lists required for creating a NonLinearTransformation object. | |
static std::unique_ptr< NonLinearTransformation > | FromCalibrationPattern (const ImagePlane &plane, CalibrationPatternStyle style, CalibrationPatternContrast contrast, int gridSpacing, int minContrast, double maxRatio, int order, CreationProgress progressCallback=CreationProgress()) |
Create a new transformation object by automatically extracting the pixel lists required for creating a NonLinearTransformation object. | |
Object implementing the non linear polynomially approximated transform implemented in the CVB Foundation package.
|
inline |
Load a saved transformation from a file.
[in] | fileName | Name of the file to load. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Return an array of the coefficients used for the transformation of x coordinates.
Any | exception derived from std::exception including CvbException. |
|
inline |
Return an array of the coefficients used for the inverse transformation of x coordinates.
Any | exception derived from std::exception including CvbException. |
|
inline |
Return an array of the coefficients used for the transformation of y coordinates.
Any | exception derived from std::exception including CvbException. |
|
inline |
Return an array of the coefficients used for the inverse transformation of x coordinates.
Any | exception derived from std::exception including CvbException. |
|
inlinestatic |
Create a new transformation object by automatically extracting the pixel lists required for creating a NonLinearTransformation object.
[in] | plane | Image plane to work on. |
[in] | style | Calibration pattern style visible in the image (see CalibrationPatternStyle). |
[in] | contrast | Selects whether the image shows CalibrationPatternContrast::BlackOnWhite or CalibrationPatternContrast::WhiteOnBlack dots. |
[in] | gridSpacing | Spacing of the calibration dot grid in the target image. Defines the distance of the points that will end up in the transformed pixels. |
[in] | minContrast | Minimum gray value contrast between the object and the background of the calibration target pattern. |
[in] | maxRatio | Maximum ratio between the biggest and the smallest calibration dot. |
[in] | order | Polynomial order of the transformation to be generated. |
[in] | aoi | Area of interest in which to look for the calibration pattern's dots. |
[in] | progressCallback | Callback to be used for passing progress information back to the caller. |
Any | exception derived from std::exception including CvbException. |
The image plane given to this method needs to contain a calibration pattern as generated by the method CreateCalibrationPattern: A regularly spaced matrix of dots, the distance between the dots in x- and y-direction should be 2.5 times the diameter of the dots, if an asymmetric pattern was used, the bigger dots should have 2.5 times the area of the smaller dots (meaning that their radius is sqrt(2.5) times the radius of the small dots). Note that, although the area of interest is given as a Area2D here (and in the processing of the Area2D the image's coordinate system will be respected), the actual output of this method uses CoordinateSystemType::PixelCoordinates! This seemingly inconsistent mix in this case is in fact useful, because a Area2D will better capture the actual location of a calibration pattern, especially if the image has been rotated, than a Rectangle style area of interest. But the calibration functions working on the output of GetCalibrationLists usually assume that the pixel lists are given in pixel coordinates. To avoid misunderstandings and complications in the interpretation of the image content, it is recommended to use a default coordinate system on the input image. The minimum contrast (minContrast) value to be set depends on the quality of the image taken from the pattern, but in a typical situation this contrast should not drop below 64 gray values, otherwise it might become difficult to extract the calibration points. The maximum ratio (maxRatio) value will be used to identify outliers when looking for calibration dots. It should be set high enough to allow for the area variations to be expected due to perspective distortions and small enough to eliminate the candidates that are either too big or too small to be valid calibration pattern dots. Typically, values of about 3.0 to 5.0 are big enough - even if there is notable perspective distortion visible in the images. If an asymmetric calibration pattern has been selected, the ratio used for calculation will be adapted accordingly.
|
inlinestatic |
Create a new transformation object by automatically extracting the pixel lists required for creating a NonLinearTransformation object.
[in] | plane | Image plane to work on. |
[in] | style | Calibration pattern style visible in the image (see CalibrationPatternStyle). |
[in] | contrast | Selects whether the image shows CalibrationPatternContrast::BlackOnWhite or CalibrationPatternContrast::WhiteOnBlack dots. |
[in] | gridSpacing | Spacing of the calibration dot grid in the target image. Defines the distance of the points that will end up in the transformed pixels. |
[in] | minContrast | Minimum gray value contrast between the object and the background of the calibration target pattern. |
[in] | maxRatio | Maximum ratio between the biggest and the smallest calibration dot. |
[in] | order | Polynomial order of the transformation to be generated. |
[in] | progressCallback | Callback to be used for passing progress information back to the caller. |
Any | exception derived from std::exception including CvbException. |
The image plane given to this method needs to contain a calibration pattern as generated by the method CreateCalibrationPattern: A regularly spaced matrix of dots, the distance between the dots in x- and y-direction should be 2.5 times the diameter of the dots, if an asymmetric pattern was used, the bigger dots should have 2.5 times the area of the smaller dots (meaning that their radius is sqrt(2.5) times the radius of the small dots). The minimum contrast (minContrast) value to be set depends on the quality of the image taken from the pattern, but in a typical situation this contrast should not drop below 64 gray values, otherwise it might become difficult to extract the calibration points. The maximum ratio (maxRatio) value will be used to identify outliers when looking for calibration dots. It should be set high enough to allow for the area variations to be expected due to perspective distortions and small enough to eliminate the candidates that are either too big or too small to be valid calibration pattern dots. Typically, values of about 3.0 to 5.0 are big enough - even if there is notable perspective distortion visible in the images. If an asymmetric calibration pattern has been selected, the ratio used for calculation will be adapted accordingly.
|
inlinestatic |
Creates transformation from a classic API handle.
[in] | guard | Life time guard for C-API handle. |
Any | exception derived from std::exception including CvbException. |
The transformation takes ownership of the handle, so you must share it before using this function.
|
inlinestatic |
Create a non linear transformation that - approximately - matches the set of originalPixels to the set of transformedPixels.
[in] | originalPixels | Originial pixel locations. The pixels as measured from an image. |
[in] | transformedPixels | Transformed pixels. The locations the corresponding pixels from originalPixels should ideally have. |
[in] | order | Polynomial order of the transformation to be generated. |
[in] | progressCallback | Callback to be used for passing progress information back to the caller. |
Any | exception derived from std::exception including CvbException. |
|
inlinenoexcept |
Classic API NLTRANSFORMATION handle.
Does | not throw any exception. |
It is normally not necessary to work with this handle.
|
inline |
Back transform an image with this nonlinear transformation.
[in] | image | Image to transform. |
[in] | targetSize | Target size of the transformed image. |
[in] | targetOffset | Origin offset of the transformed image. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Back transform a sequence of points with this nonlinear transformation.
[in] | points | Points to transform. |
Any | exception derived from std::exception including CvbException. |
Back transform a point with this nonlinear transformation.
[in] | point | Point to transform. |
Any | exception derived from std::exception including CvbException. |
|
inlinestatic |
Load a saved transformation from a file.
[in] | fileName | Name of the file to load. |
Any | exception derived from std::exception including CvbException. |
|
inlinenoexcept |
Gets the transformation order.
Does | not throw any exception. |
|
inline |
Write the transformation to a file.
[in] | fileName | Path to save to. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Transform an image with this nonlinear transformation.
[in] | image | Image to transform. |
[in] | targetSize | Target size of the transformed image. |
[in] | targetOffset | Origin offset of the transformed image. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Transform a sequence of points with this nonlinear transformation.
[in] | points | Points to transform. |
Any | exception derived from std::exception including CvbException. |
Transform a point with this nonlinear transformation.
[in] | point | Point to transform. |
Any | exception derived from std::exception including CvbException. |
Transform a rect with this nonlinear transformation.
[in] | rect | Rect to transform. |
Any | exception derived from std::exception including CvbException. |
We use cookies to improve your experience. By using this documentation, you agree to our use of cookies.