Monado OpenXR Runtime
|
OpenCV calibration helpers. More...
Go to the source code of this file.
Data Structures | |
struct | CameraCalibrationWrapper |
Essential calibration data wrapped for C++. More... | |
struct | StereoCameraCalibrationWrapper |
Essential stereo calibration data wrapped for C++. More... | |
struct | RemapPair |
An x,y pair of matrices for the remap() function. More... | |
struct | ViewRectification |
Rectification, rotation, projection data for a single view in a stereo pair. More... | |
struct | StereoRectificationMaps |
Rectification maps as well as transforms for a stereo camera. More... | |
class | NormalizedCoordsCache |
Provides cached, precomputed access to normalized image coordinates from original, distorted ones. More... | |
Functions | |
RemapPair | calibration_get_undistort_map (t_camera_calibration &calib, cv::InputArray rectify_transform_optional=cv::noArray(), cv::Mat new_camera_matrix_optional=cv::Mat()) |
Prepare undistortion/normalization remap structures for a rectilinear or fisheye image. More... | |
OpenCV calibration helpers.
RemapPair calibration_get_undistort_map | ( | t_camera_calibration & | calib, |
cv::InputArray | rectify_transform_optional = cv::noArray() , |
||
cv::Mat | new_camera_matrix_optional = cv::Mat() |
||
) |
Prepare undistortion/normalization remap structures for a rectilinear or fisheye image.
calib | A single camera calibration structure. |
rectify_transform_optional | A rectification transform to apply, if desired. |
new_camera_matrix_optional | Unlike OpenCV, the default/empty matrix here uses the input camera matrix as your output camera matrix. |
References t_camera_calibration::image_size_pixels, and t_camera_calibration::use_fisheye.
Referenced by StereoRectificationMaps::StereoRectificationMaps().