The tutorial shows the general structure of a program that uses the PnP pose estimator to determine the camera pose.
Initialize the pose estimator
We select a conservative number of ransac and non-linear optimizer iterations (10 and 10). contextHandle
is assumed to be previously initialized dwContextHandle_t
.
DW_API_PUBLIC dwStatus dwPnP_initialize(dwPnPHandle_t *obj, size_t ransacIterations, size_t optimizerIterations, dwContextHandle_t ctx)
Initializes a PnP solver.
Obtain matches
size_t pointCount;
Defines a two-element single-precision floating-point vector.
Defines a three-element floating-point vector.
Undistort feature points
cameraModel
is assumed to be previously initialized dwCameraModelHandle_t
for(size_t i = 0; i < pointCount; ++i)
{
const auto& point = imagePoints[i];
auto& ray = rays[i];
}
DW_API_PUBLIC dwStatus dwCameraModel_pixel2Ray(float32_t *x, float32_t *y, float32_t *z, float32_t u, float32_t v, dwConstCameraModelHandle_t obj)
Back-projects a 2D point in pixel coordinates to a 3D optical ray direction.
Estimate pose
dwPnP_solve(&worldToCamera, pointCount, rays, worldPoints, pnp);
DW_API_PUBLIC dwStatus dwPnP_solve(dwTransformation3f *worldToCamera, size_t matchCount, const dwVector3f *rays, const dwVector3f *worldPoints, dwPnPHandle_t obj)
Estimates the worldToCamera pose based on optical ray to 3D world point correspondences.
Finally, free previously allocated memory.
DW_API_PUBLIC dwStatus dwPnP_release(dwPnPHandle_t obj)
Releases the PnP solver.