16256 Commits (d67d32af482441616c622c1683d7c582fe06cd9c)
 

Author SHA1 Message Date
Andrey Pavlenko d67d32af48 Revert of "Merge pull request #4014 from sgjava:opencv-sgjava" (reverted from commit 52fa55a770) 10 years ago
Vadim Pisarevsky 3136010e1a Merge pull request #4023 from Dikay900:cleanup_cascadedetect 10 years ago
Vadim Pisarevsky 2fc92448df Merge pull request #4024 from jet47:cuda-minmaxloc-one-row-input 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
Vadim Pisarevsky 8b791477df Merge pull request #3971 from Dikay900:2_4_to_master_3 10 years ago
Vadim Pisarevsky e0136e39f4 Merge pull request #4011 from cr333:parula 10 years ago
Vadim Pisarevsky 78e89ba3ff Merge pull request #4001 from LaurentBerger:ExampleBLOB 10 years ago
Vadim Pisarevsky eb41a574b7 Merge pull request #4005 from MSOpenTech:videoio-contrib 10 years ago
Vadim Pisarevsky a85bb091c8 Merge pull request #4018 from vpisarev:imgproc_video_fixes 10 years ago
Maxim Kostin 3d20157d4f Added sample Windows Universal application (UAP) using videoio logic for video preview and processing. 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 cc086b9452 Merge pull request #3979 from ruslo:fix.cxx11 10 years ago
Vadim Pisarevsky 35884a7e3f Merge pull request #3982 from patrikhuber:vs2015-support-master 10 years ago
Vadim Pisarevsky 3109c77013 Merge pull request #3983 from ruslo:unify.ios 10 years ago
Vadim Pisarevsky a26ab3ab16 Merge pull request #3917 from yanlend:patch-1 10 years ago
Vadim Pisarevsky 66eb270cf7 significantly reduced sparse matrix footprint: 10 years ago
Vadim Pisarevsky 354ed5c4d6 Merge pull request #4009 from mshabunin:fix-ann-moment 10 years ago
Vadim Pisarevsky c52092e6f8 Merge pull request #3992 from nomarek:master 10 years ago
Vadim Pisarevsky 52fa55a770 Merge pull request #4014 from sgjava:opencv-sgjava 10 years ago
Vadim Pisarevsky a87e1c2f90 Merge pull request #4012 from mshabunin:doc-fixes 10 years ago
Vadim Pisarevsky cc92cd07e8 Merge pull request #4017 from headupinclouds:master 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
laurentBerger 31ef944176 remove example_blob.bmp 10 years ago
Maksim Shabunin 6d1cbc6458 Reorganized user guide 10 years ago
Maksim Shabunin 3f91b0d340 Fixed external link in python colorspace tutorial 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
Maksim Shabunin c8cb03fd8f Replaced 'corrected' to 'distorted' in camera calibration tutorials 10 years ago
Christian Richardt 6425ac3b13 Added color map similar to Matlab's new default color map 'parula'. 10 years ago
Maksim Shabunin b95769333c Fixed ANN_MLP dw initialization when moment is not 0 10 years ago
Vadim Pisarevsky 4743184078 Merge pull request #4006 from sgjava:opencv-steve 10 years ago