Back to Aurora Vision Library website
You are here: Start » Function Reference » Computer Vision » Camera Calibration » UndistortPoint_Deprecated
UndistortPoint_Deprecated
| Header: | AVL.h |
|---|---|
| Namespace: | avl |
| Module: | Calibration |
Remove lens distortion for a single point.
Syntax
void avl::UndistortPoint_Deprecated ( const avl::Point2D& inPoint, const avl::Matrix& inCameraMatrix, const avl::LensDistortion& inDistortion, avl::Point2D& outPoint )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint | const Point2D& | Point on distorted image. | |
![]() |
inCameraMatrix | const Matrix& | Camera matrix obtained from calibration. | |
![]() |
inDistortion | const LensDistortion& | Distortion parameters obtained from calibration. | |
![]() |
outPoint | Point2D& | Point on undistorted image. |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inPoint and outPoint
Read more about In-place Computation.


