- 25 Mar, 2015 3 commits
-
-
Maksim Shabunin authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
- 24 Mar, 2015 17 commits
-
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
theodore authored
-
RafaRuiz authored
In MacOSx x64 it was getting a memory leak even without initializing points: http://code.opencv.org/issues/4250
-
Tim D. Smith authored
Explicitly linking to a Python framework on OS X prevents modules from being built against one Python (i.e. system python) and imported from another (i.e. Homebrew python); the interpreter segfaults if there's a linkage to a foreign Python. Building the module with `-undefined dynamic_lookup` instead of an explicit link allows the symbols to be resolved at load time from a compatible python.
-
Erik Karlsson authored
-
Erik Karlsson authored
-
- 23 Mar, 2015 10 commits
-
-
Erik Karlsson authored
-
Erik Karlsson authored
-
Evgeny Agafonchikov authored
HAVE_VFW flag is defined by CMake try_compile check. Check fails for WINRT as vfw.h begins with and contains empty set of functions for Store apps. So we can safely remove vfw32.lib for WINRT in general (independently of availability for specific configuration)
-
Evgeny Agafonchikov authored
-
Maksim Shabunin authored
-
Maksim Shabunin authored
-
Yan Wang authored
1. Use built-in mad() instead of += and *. 2. For stump stages, if weight.z == 0, avoid unnecessary calculation because some features only have 2 rectangles.. It could improve OCL_Cascade_Image_MinSize_CascadeClassifier.CascadeClassifier/* about 10% mean values. Signed-off-by: Yan Wang <yan.wang@linux.intel.com>
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
- 22 Mar, 2015 1 commit
-
-
Kai Wolf authored
-
- 20 Mar, 2015 8 commits
-
-
Evgeny Agafonchikov authored
-
Dikay900 authored
-
Vadim Pisarevsky authored
-
Dmitry-Me authored
-
Alexander Alekhin authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Owen Healy authored
The matrix templateZM needs to be initialized because otherwise uninitialized values leak into the correlation in: const double correlation = templateZM.dot(imageWarped) In the worst case this will lead the correlation to be NaN ruining the whole routine. The subtraction does not initialize templateZM due to the mask. Unfortunately, the uninitialized values (by altering the correlation) have the side effect of dragging out the computation a little longer giving a slightly better error bound. This means that fixing this bug breaks perf_ecc where SANITY_CHECK(warpMat, 1e-3); is just a little too tight and happens to work due to the uninitialized values. Since this is a performance not a accuracy test I think it is OK to just relax the error bound a little bit (the tight error bound being after all the result of a bug).
-
- 19 Mar, 2015 1 commit
-
-
Dikay900 authored
-