mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
This commit is contained in:
@@ -546,15 +546,14 @@ CV_EXPORTS_W void matMulDeriv( InputArray A, InputArray B, OutputArray dABdA, Ou
|
||||
@param tvec2 Second translation vector.
|
||||
@param rvec3 Output rotation vector of the superposition.
|
||||
@param tvec3 Output translation vector of the superposition.
|
||||
@param dr3dr1
|
||||
@param dr3dt1
|
||||
@param dr3dr2
|
||||
@param dr3dt2
|
||||
@param dt3dr1
|
||||
@param dt3dt1
|
||||
@param dt3dr2
|
||||
@param dt3dt2 Optional output derivatives of rvec3 or tvec3 with regard to rvec1, rvec2, tvec1 and
|
||||
tvec2, respectively.
|
||||
@param dr3dr1 Optional output derivative of rvec3 with regard to rvec1
|
||||
@param dr3dt1 Optional output derivative of rvec3 with regard to tvec1
|
||||
@param dr3dr2 Optional output derivative of rvec3 with regard to rvec2
|
||||
@param dr3dt2 Optional output derivative of rvec3 with regard to tvec2
|
||||
@param dt3dr1 Optional output derivative of tvec3 with regard to rvec1
|
||||
@param dt3dt1 Optional output derivative of tvec3 with regard to tvec1
|
||||
@param dt3dr2 Optional output derivative of tvec3 with regard to rvec2
|
||||
@param dt3dt2 Optional output derivative of tvec3 with regard to tvec2
|
||||
|
||||
The functions compute:
|
||||
|
||||
@@ -3129,7 +3128,7 @@ namespace fisheye
|
||||
@param D Input vector of distortion coefficients \f$(k_1, k_2, k_3, k_4)\f$.
|
||||
@param Knew Camera matrix of the distorted image. By default, it is the identity matrix but you
|
||||
may additionally scale and shift the result by using a different matrix.
|
||||
@param new_size
|
||||
@param new_size the new size
|
||||
|
||||
The function transforms an image to compensate radial and tangential lens distortion.
|
||||
|
||||
@@ -3155,14 +3154,14 @@ namespace fisheye
|
||||
/** @brief Estimates new camera matrix for undistortion or rectification.
|
||||
|
||||
@param K Camera matrix \f$K = \vecthreethree{f_x}{0}{c_x}{0}{f_y}{c_y}{0}{0}{_1}\f$.
|
||||
@param image_size
|
||||
@param image_size Size of the image
|
||||
@param D Input vector of distortion coefficients \f$(k_1, k_2, k_3, k_4)\f$.
|
||||
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
|
||||
1-channel or 1x1 3-channel
|
||||
@param P New camera matrix (3x3) or new projection matrix (3x4)
|
||||
@param balance Sets the new focal length in range between the min focal length and the max focal
|
||||
length. Balance is in range of [0, 1].
|
||||
@param new_size
|
||||
@param new_size the new size
|
||||
@param fov_scale Divisor for new focal length.
|
||||
*/
|
||||
CV_EXPORTS_W void estimateNewCameraMatrixForUndistortRectify(InputArray K, InputArray D, const Size &image_size, InputArray R,
|
||||
|
||||
Reference in New Issue
Block a user