12110 Commits (dac715ad1f641cdd60a4b3a6718de3133f87c1df)

Author SHA1 Message Date
Camille 55a5e6be2c bug fix 3696 10 years ago
Mike Maraya 607d3b54ce Fixes resizeWindow() on OS X (Bug #3200) 10 years ago
Dikay900 7ca0557b40 typos in comments 10 years ago
Aleksandr Petrikov 25b4cface0 add NEON realization for StereoBM(findCorrespondence, prefilterXSobel) 10 years ago
Ehren Metcalfe e9bc9c47c2 Fix resource leak with iOS camera due to failure to remove AVCaptureSession input/outputs on stop (Bug #3389) 10 years ago
aletheios 6a50a51b4e Bugfix #3705: params.setRecordingHint(true) breaks camera preview on Samsung Galaxy S2 10 years ago
Jüri Aedla 22c0238bf1 Android camera qcom HAL doesn't like it when no consumer usage bits are set. Set a usage bit for preview BufferQueue. 10 years ago
Alexander Smorkalov acbc7362db Bug #3611 Initializing static cv::Mat with cv::Mat::zeros causes segmentation fault fixed. 10 years ago
Vadim Pisarevsky 2466ca02bf removed cameraMatrix modification in the currently disabled uPnP algorithm for SolvePnP problem (http://code.opencv.org/issues/3985) 10 years ago
Vadim Pisarevsky 7fd5b3a0c5 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 10 years ago
Vadim Pisarevsky 90a78585fb reproduced test case from http://code.opencv.org/issues/4334 10 years ago
Vadim Pisarevsky f32f0486e2 trying to eliminate warnings in Android build 10 years ago
Maksim Shabunin 3863dc5b2b Updated pkg-config generation, added sample makefile 10 years ago
Vadim Pisarevsky d2aaa70e93 removed HAL calls from public OpenCV headers; put IPP calls back to hall:sqrt() and such (but they are disabled for now) 10 years ago
Maxim Kostin 4418ee6c77 Refactored internal helpers. Simplified structure. Updated comments. Updates #41 10 years ago
Vadim Pisarevsky af47b6551f another attempt to make the MSER test pass. removed possible randomization in parameters from run to run 10 years ago
Vadim Pisarevsky 4c67ae1a0b fixed failure in Features2d_MSER.cases 10 years ago
Vadim Pisarevsky dab78c26b1 added reasonable test for MSER (including coverage for http://code.opencv.org/issues/4273, http://code.opencv.org/issues/1723 and http://code.opencv.org/issues/756); also, added some "in-progress" info to the Features2d_Feature2d.no_crash test. 10 years ago
Vadim Pisarevsky fede94e979 it's now true MSER algorithm that works well on binary images too 10 years ago
Piotr Dobrowolski 6d0407b65e VideoCapture with digital camera and gPhoto2 library 10 years ago
Andrey Pavlenko ab8afc3bcc Revert of "Merge pull request #4006 from sgjava:opencv-steve" (reverted from commit 4743184078) 10 years ago
Andrey Pavlenko d67d32af48 Revert of "Merge pull request #4014 from sgjava:opencv-sgjava" (reverted from commit 52fa55a770) 10 years ago
Vadim Pisarevsky b5a7122855 added test to do smoke testing of ORB, KAZE, AKAZE and BRISK on images of different size 10 years ago
Vadim Pisarevsky fc06a2384b added test for batch detection/descriptor extraction (http://code.opencv.org/issues/3943) 10 years ago
Vadim Pisarevsky 432cf1152a added read/write functions for vector<DMatch> + the test (http://code.opencv.org/issues/4308) 10 years ago
Vladislav Vinogradov e22979f334 fix #4343 : cv::cuda::findMinMaxLoc incorrect output for single row matrix 10 years ago
Dikay900 a5242265d7 cleanup after last PR 10 years ago
Maxim Kostin 55f78f8a83 Added configuration changes enabling videoio WinRT support. 10 years ago
Maxim Kostin d08cb6b357 Added WinRT support for videoio. 10 years ago
Maxim Kostin d40eefd5a4 Moved old WinRT related wrappers from highgui to videoio fixing long broken logic. 10 years ago
Vadim Pisarevsky 4a9b244577 hopefully, fixed crash in sparse mat test 10 years ago
Vadim Pisarevsky 66eb270cf7 significantly reduced sparse matrix footprint: 10 years ago
Vadim Pisarevsky 7dd67f4997 use _mm_sad_epu8 instead of _mm_movemask_epi8 in countNonZero. Therefore, we do not need any popcount table and this solves http://code.opencv.org/issues/4333 10 years ago
Vadim Pisarevsky 3c769edea0 added extra check in CalibrateDebevec to make sure the points are within the image: 10 years ago
Vadim Pisarevsky 3c7f7de477 avoid possible problems with zero values in tone mapping algorithms (http://code.opencv.org/issues/4020) 10 years ago
Vadim Pisarevsky ffabbfa778 added test to prove that remap does not leak memory (http://code.opencv.org/issues/2502). disabled the test for now to save execution time. 10 years ago
Vadim Pisarevsky ca90667723 fixed compile warnings on Linux and Windows 10 years ago
Vadim Pisarevsky 05d888316a added test for http://code.opencv.org/issues/2957 10 years ago
Vadim Pisarevsky b37aaa8303 significantly improved parallel non-local means by using granularity parameter in parallel_for_ loop. Because the algorithm deals with sliding sums, it's essential that each thread has enough work to do, otherwise the algorithm gets higher theoretical complexity and thus there is no speedup comparing to 1-thread code (at best). 10 years ago
Vadim Pisarevsky feb5b6aa93 increased singularity epsilon in LU decomposition. This solved singular case from http://code.opencv.org/issues/3305. Added the respective test. 10 years ago
Vadim Pisarevsky 2e7e754032 added support for n-channel (n>4) images in warpAffine/warpPerspective/remap: http://code.opencv.org/issues/4190 10 years ago
David Hirvonen cab0ecdf19 Avoid clearing HaarEvaluator::tofs variable (introduced fb8478eb7b) in HaarEvaluator::setImage(...) since it won't be recomputed by HaarEvaluator::computeOptFeatures() for cases where the input image dimensions and requested search scales are the same as the previous. If none of the above change then it should be correct, and if they do change it will be computed correctly inside HaarEvaluator::computeOptFeatures() (in commit 952f9dbe62) 10 years ago
Vadim Pisarevsky d3b0cb878a added test for http://code.opencv.org/issues/2736 10 years ago
Vadim Pisarevsky 71002e0e79 some fixes from http://code.opencv.org/issues/3733 10 years ago
sgjava 8b3b2a52f0 Removed finalize() and added n_delete to release() 10 years ago
sgjava fe0ce9282a Changed delete() modifier to public from protected 10 years ago
Marek Nogacki 25bcca2edb fixed http://code.opencv.org/issues/4276 - set drawing thickness limit to 32767 10 years ago
Maksim Shabunin a7160d9b12 Docs: fixed _dest type in cv::compare 10 years ago
Maksim Shabunin e22c09c601 Documentation for CommandLineParser 10 years ago
Maksim Shabunin 61293a09ff Fixed RGB-to-HLS conversion formula in documentation 10 years ago