- 07 Mar, 2016 1 commit
-
-
Krishnaraj Bhat authored
cosmetic changes to fix this warning. real bugs not found
-
- 24 Feb, 2016 1 commit
-
-
Pavel Rojtberg authored
-
- 18 Feb, 2016 2 commits
-
-
aravind authored
-
Philipp Hasper authored
-
- 01 Feb, 2016 1 commit
-
-
Dmitry-Me authored
-
- 13 Jan, 2016 1 commit
-
-
KeySecure authored
-
- 12 Jan, 2016 3 commits
-
-
Matěj Šmíd authored
-
Alexander Karsakov authored
Fixed getSubset method to support Nx3 1-channel matrices as input (3xN 1-channel matrices doesn't supported at all).
-
Alexander Karsakov authored
Added test for checking that solvePnPRansac accepts vector<Point3f> and Nx3 1-channel or 1xN/Nx1 3-channel matrices as input.
-
- 08 Jan, 2016 1 commit
-
-
Emanuel Jöbstl authored
Changed parameter order in documentation of findEssentialMat, because threshold and probability were switched.
-
- 24 Dec, 2015 1 commit
-
-
Pavel Rojtberg authored
-
- 18 Dec, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 17 Dec, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 14 Dec, 2015 1 commit
-
-
Thomas Dunker authored
Extension of the camera distortion model for tilted image sensors (Scheimpflug condition) including test
-
- 11 Dec, 2015 2 commits
-
-
Pavel Rojtberg authored
if they are not we also do not need to allocate a local copy of the rvec and tvec
-
Pavel Rojtberg authored
also replace C defines with C++ enums
-
- 10 Dec, 2015 4 commits
-
-
Pavel Rojtberg authored
-
Pavel Rojtberg authored
-
Pavel Rojtberg authored
use the same approach like in fisheye calibration: instead of setting masked out rows to zero, remove them from the equation system. This way JtJ does not become singular and we can use the much faster LU decomposition instead of SVD. This results in a speedup of the Calibrate unit tests of 3x-10x.
-
Pavel Rojtberg authored
-
- 08 Dec, 2015 1 commit
-
-
emiswelt authored
so it matches the code.
-
- 25 Nov, 2015 1 commit
-
-
Pavel Rojtberg authored
the first order approximation of the geometric error
-
- 20 Nov, 2015 1 commit
-
-
Pavel Rojtberg authored
-
- 19 Nov, 2015 1 commit
-
-
Rok Mandeljc authored
Make a note about 16-bit signed format - the function assumes that values have no fractional bits (so 16-bit disparity from StereoBM and StereoSGBM cannot be directly used!)
-
- 17 Nov, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 16 Nov, 2015 1 commit
-
-
Pavel Rojtberg authored
improves performance by factor 1.2 to 2.0
-
- 11 Nov, 2015 1 commit
-
-
Pavel Rojtberg authored
-
- 08 Nov, 2015 1 commit
-
-
Pavel Rojtberg authored
-
- 29 Oct, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 20 Oct, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 16 Oct, 2015 1 commit
-
-
Suleyman TURKMEN authored
-
- 11 Oct, 2015 1 commit
-
-
Ilya Lavrenov authored
-
- 10 Oct, 2015 1 commit
-
-
Nickolay Polyarniy authored
Fix for https://github.com/Itseez/opencv/issues/4426 Documentation says that input points format is the same to input for findFundamentalMat
-
- 01 Oct, 2015 2 commits
-
-
Elena Shipunova authored
-
Pavel Vlasov authored
OPENCV_IPP env var now allows to select IPP architecture level for IPP9+; IPP initialization logic was unified across modules;
-
- 25 Sep, 2015 2 commits
-
-
Pavel Vlasov authored
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE to manage changes between updates more easily. IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;
-
Pavel Vlasov authored
Minor changes to IPP implementations;
-
- 24 Sep, 2015 1 commit
-
-
robertxwu authored
Refer to the following issue for detail: https://github.com/Itseez/opencv/issues/5145
-
- 21 Sep, 2015 1 commit
-
-
robertxwu authored
-
- 18 Sep, 2015 1 commit
-
-
Pavel Rojtberg authored
`A || !A` is `true` so write `(A && B) || !A` as `B || !A`
-