12011 Commits (8b791477df2e56d96f7befaa559b605f07648efa)

Author SHA1 Message Date
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
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
Martin Ueding 1e00a93f97 Fix spelling 10 years ago
sgjava 0f53526598 Added VideoWriter and changed finalize to delete 10 years ago
Marvin Smith ae933db526 Fixing the gdal include error that Macports seems to only mess up. 10 years ago
Michaël Sdika ab40c2acf7 added the signedGradient varaible to the HOGDescriptor class. 10 years ago
Ashod Nakashian 7cd198623e Prevent the parent from drawing over OpenGL context. 10 years ago
Maksim Shabunin 01c3d491e7 Fixed python crash when both cv2.imshow and gtk module are used 10 years ago
Vincent Rabaud f052b0bc4d get code to compile on Ubuntu Saucy 10 years ago
Marek Nogacki d59a6b29d5 fixed http://code.opencv.org/issues/4276 - removed drawing thickness upper limit 10 years ago
Maksim Shabunin c137ba53a0 Wrap ANN_MLP class into Python 10 years ago
cbalint13 fb56d5c482 Squash all BRISK commits into one. 10 years ago
Vadim Pisarevsky d280205245 fixed compile errors on ARM, as well as failures in OCL_Dft* regression tests 10 years ago
Vadim Pisarevsky 0ee8634b2f fixed random failures in Core_DFT.complex_output2 test (the case of input_mat.cols == 1) 10 years ago
Vadim Pisarevsky 73f760fdf0 some more compile warnings fixed 10 years ago
Vadim Pisarevsky 931a519969 fixed warning in mathfuncs 10 years ago
StevenPuttemans 0baaf0a60f fixing old variables in documentation and transfering to the new interface 10 years ago
Vadim Pisarevsky 63a63e3eaa extended MinProblemSolver::Function to 1) report the space dimensionality, 2) compute gradient if needed 10 years ago
cbalint13 2c6114f58d Force newer build over buildbot. 10 years ago
cbalint13 8ba1ec22e4 Force buildbot to rebuild. 10 years ago
Vadim Pisarevsky 5b9182ba43 reenabled conjugate gradient solver test 10 years ago
Vadim Pisarevsky 5a31f6b4e1 ok, so probably the failure in downhill simplex has been finally solved 10 years ago
Vadim Pisarevsky 2ec92ba440 added test for http://code.opencv.org/issues/1918 10 years ago
Vadim Pisarevsky 01e351de37 refactored downhill simplex implementation a bit; hopefully, fixed the bug with random failures in the tests 10 years ago
Vadim Pisarevsky a33d7928a4 Fixed getContinuousSize() to handle huge matrices properly. This should solve http://code.opencv.org/issues/3232 10 years ago
Vadim Pisarevsky 9c0b740b84 improved randShuffle as suggested by John Stark in http://code.opencv.org/issues/3730 10 years ago
Vadim Pisarevsky 96b5ec14d4 fixed bug with simplex initialization in Downhill solver (thanks to Toby Rule for the patch): http://code.opencv.org/issues/3990. 10 years ago