First time here? Check out the FAQ!

Ask Your Question
0

fisheye::undistortPoints() missing to apply camera matrix

asked Jul 19 '16

MrBrown gravatar image

Well - using fisheye::undistortPoints() for transforming captured pixel coordinates to the 'planar domain', ends up with result coordinates in the range -1..+1, when applying the camera matrix to this points I get the correct results. I'm wondering if this is the intended behavior?

Preview: (hide)

1 answer

Sort by » oldest newest most voted
1

answered Jul 19 '16

With the regular undistortPoints function you have to pass your camera matrix as the P parameter in addition to passing it as the K parameter to convert the coordinates from -1..+1 back to pixels. I imagine fisheye::undistortPoints works the same way.

void fisheye::undistortPoints(InputArray distorted, OutputArray undistorted, InputArray K, InputArray D, InputArray R=noArray(), InputArray P=noArray())

Here's how I call it:

undistortPoints(thePoints, undistortedPoints, _cameraMatrix, _distortionCoefficients, noArray(), _cameraMatrix);
Preview: (hide)

Question Tools

1 follower

Stats

Asked: Jul 19 '16

Seen: 290 times

Last updated: Jul 19 '16