Back to FabImage Library website

You are here: Start » Function Reference » Camera Calibration » WorldPlanePointsToImage

WorldPlanePointsToImage


Header:FIL.h
Namespace:fil

Finds the image coordinates of world points.

Syntax

C++
C#
 
void fil::WorldPlanePointsToImage
(
	const ftl::Array<fil::Point2D>& inWorldPlanePoints,
	const fil::RectificationTransform& inTransform,
	ftl::Array<fil::Point2D>& outImagePoints
)

Parameters

Name Type Default Description
inWorldPlanePoints const Array<Point2D>& Array of 2D points in given world coordinate plane.
inTransform const RectificationTransform& Transform's camera model is needed for applying distortion back. Transform's homography is needed for transforming coordinates back from a given world plane.
outImagePoints Array<Point2D>&

Errors

List of possible exceptions:

Error type Description
DomainError inTransform homography matrix must be a 3x3 matrix

See Also