- 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
-
- 18 Sep, 2015 1 commit
-
-
Pavel Rojtberg authored
`A || !A` is `true` so write `(A && B) || !A` as `B || !A`
-
- 30 Aug, 2015 1 commit
-
-
Elad Joseph authored
Fixed small mistake in documentation. The prism coefficients in y'' equation were mistakenly written as s1,s2 instead of s3,s4
-
- 27 Jul, 2015 1 commit
-
-
sbokov authored
-
- 23 Jul, 2015 2 commits
-
-
sbokov authored
Now StereoSGBM behaves similarly to StereoBM in terms of ROI handling.
-
sbokov authored
New mode is approximately 2-3 times faster than MODE_SGBM with minimal degradation in quality and uses universal HAL intrinsics. A performance test was added. The accuracy test was updated to support the new mode.
-
- 20 Jul, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 17 Jul, 2015 1 commit
-
-
themightyoarfish authored
-
- 14 Jul, 2015 1 commit
-
-
sbokov authored
-
- 13 Jul, 2015 1 commit
-
-
Pavel Rojtberg authored
-
- 10 Jul, 2015 1 commit
-
-
themightyoarfish authored
-
- 30 Jun, 2015 2 commits
-
-
sbokov authored
-
Evgeny Agafonchikov authored
-
- 17 Jun, 2015 1 commit
-
-
rajithr authored
-
- 12 Jun, 2015 1 commit
-
-
Alexander Duda authored
cvStereoRectify assumes that NULL is provided in case of no distCoeffs
-
- 28 May, 2015 1 commit
-
-
Vadim Pisarevsky authored
-
- 26 May, 2015 2 commits
-
-
Vadim Pisarevsky authored
for some reason Calib3d_Homography.fromImages on ARM gives much smaller number of inliers than on x86/x64. Need to investigate more carefully, but let's decrease the tolerance threshold for now
-
Vadim Pisarevsky authored
-
- 25 May, 2015 5 commits
-
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
hack solvePoly to finds roots of polynoms with zero higher-order coefficients. The roots are populated in this case, which is not valid, strictly speaking, but good enough for function like correctMatches. This solves http://code.opencv.org/issues/4330
-
-
-
http://code.opencv.org/issues/4011Vadim Pisarevsky authored
added tests for http://code.opencv.org/issues/4011 and http://code.opencv.org/issues/3057; fixed random subset generation in both methods to increase chance for a good subset
-
- 24 May, 2015 1 commit
-
-
Alexander Smorkalov authored
-
- 23 May, 2015 5 commits
-
-
Dikay900 authored
-
Aleksandr Petrikov authored
Conflicts: modules/calib3d/src/stereobm.cpp Add CV_Assert (ndisp % 8 == 0) to NEON version
-
Vadim Pisarevsky authored
removed cameraMatrix modification in the currently disabled uPnP algorithm for SolvePnP problem (http://code.opencv.org/issues/3985)
-
http://code.opencv.org/issues/3461;…Vadim Pisarevsky authored
added another triangulation test case from http://code.opencv.org/issues/3461; fixed partial derivative on distortion coefficients, as http://code.opencv.org/issues/4101 suggests
-
-
- 13 May, 2015 1 commit
-
-
- 27 Apr, 2015 1 commit
-
-
Maksim Shabunin authored
Also: - Silence clang warnings about unsupported command line arguments - Add diagnostic print to calib3d test - Fixed perf test relative error check - Fix iOS build problem
-
- 25 Apr, 2015 1 commit
-
-
Mansour Moufid authored
Conflicts: modules/gpu/perf/perf_imgproc.cpp Cast a long integer to double explicitly. Conflicts: modules/python/src2/cv2.cpp Cast some matrix sizes to type int. Change some vector mask types to unsigned. Conflicts: modules/core/src/arithm.cpp
-
- 23 Apr, 2015 3 commits
-
-
Deanna Hood authored
-
Deanna Hood authored
-
Martin Ueding authored
It took me a while to figure out what was meant with OpenCV Error: Assertion failed (i < 0) in getMat While searching for this error message I found [a list of error messages](https://adventuresandwhathaveyou.wordpress.com/2014/03/14/opencv-error-messages-suck/) which also explained what the problem was: The data type for `rvecs` was not a simple `cv::Mat` but a `std::vector<cv::Mat>`. After I fixed that, I got the next error message: OpenCV Error: Assertion failed (ni > 0 && ni == ni1) in collectCalibrationData, file /build/buildd/opencv-2.4.9+dfsg/modules/calib3d/src/calibration.cpp, line 3193 The problem here was that my data type for the `objectPoints` was just `vector<Vec3f>` and not `vector<vector<Vec3f>>`. In order to save other people the time looking for this, I added explicit examples of the needed data types into the documentation of the function. I had to re-read the current version a couple of times until I can read the needed levels of `vector<>`. Having this example would have really helped me there.
-
- 21 Apr, 2015 1 commit
-
-
Pavel Rojtberg authored
- fixes the Calib3d_StereoCalibrate_C testcase. update comment regarding cv::SVD::MODIFY_A
-
- 16 Apr, 2015 1 commit
-
-
Vadim Pisarevsky authored
-
- 14 Apr, 2015 1 commit
-
-
Daeyun Shin authored
-