- 04 Dec, 2016 1 commit
-
-
Kotrix authored
Operations inside for loops are unnecessary. They are repeated anyway just below for loops
-
- 07 Nov, 2016 1 commit
-
-
mshabunin authored
-
- 16 Oct, 2016 1 commit
-
-
Tomoaki Teshima authored
-
- 11 Oct, 2016 1 commit
-
-
Tomoaki Teshima authored
-
- 14 Sep, 2016 1 commit
-
-
Sean McBride authored
Fixes clang -Wextra-semi warnings.
-
- 07 Sep, 2016 1 commit
-
-
Pavel Rojtberg authored
-
- 19 Aug, 2016 1 commit
-
-
Pavel Vlasov authored
-
- 12 Aug, 2016 1 commit
-
-
Vitaly Tuzov authored
-
- 09 Aug, 2016 1 commit
-
-
k-shinotsuka authored
-
- 29 May, 2016 1 commit
-
-
Gilles Rochefort authored
The number of gaussians involved in a mixture is supposed to be dynamically adjusted. After being increased, the number of gaussians can't be reduced anymore. It seems to be a regression as the legacy code located in modules/legacy/src/bgfg_gaussmix.cpp allows to reduce such number of gaussians.
-
- 07 Apr, 2016 1 commit
-
-
mvukad authored
Added a writeFormat() method to Algorithm which must be called by the write() method of derived classes.
-
- 07 Mar, 2016 1 commit
-
-
Matthieu FT authored
-
- 29 Jan, 2016 1 commit
-
-
alcinos authored
-
- 28 Jan, 2016 2 commits
- 09 Dec, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 20 Oct, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 13 Sep, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 09 Sep, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 06 Aug, 2015 1 commit
-
-
StevenPuttemans authored
-
- 22 Jul, 2015 1 commit
-
-
Yan Wang authored
It could reduce 7 multiplications every iteration. Signed-off-by:
Yan Wang <yan.wang@linux.intel.com>
-
- 20 Jul, 2015 1 commit
-
-
Yan Wang authored
1. Remove uncessary index calculation. 2. Use mad/mad24 as possible. Signed-off-by:
Yan Wang <yan.wang@linux.intel.com>
-
- 01 Jun, 2015 1 commit
-
-
Vadim Pisarevsky authored
made improvements in ECC code (comments from https://github.com/Itseez/opencv/pull/3845), as well as minor tweak in pthread's based parallel for.
-
- 20 Mar, 2015 2 commits
-
-
Owen Healy authored
Tests of the mask are also included. This is useful for registering a non-square image against a non-square template. This also needs to relax a sanity check as per https://github.com/Itseez/opencv/pull/3851
-
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).
-
- 06 Mar, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 04 Mar, 2015 1 commit
-
-
Jonathan Viney authored
-
- 27 Feb, 2015 1 commit
-
-
Vladislav Vinogradov authored
-
- 26 Feb, 2015 1 commit
-
-
Vladislav Vinogradov authored
-
- 16 Feb, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 04 Dec, 2014 1 commit
-
-
Firat Kalaycilar authored
-
- 20 Oct, 2014 1 commit
-
-
Tomasz Posłuszny authored
-
- 18 Oct, 2014 1 commit
-
-
Vadim Pisarevsky authored
quickly corrected the previous refactoring of features2d: moved from set(SOME_PROP, val) to setSomeProp(val)
-
- 15 Oct, 2014 1 commit
-
-
Pavel Vlasov authored
IPP can be switched on and off on runtime; Optional implementation collector was added (switched off by default in CMake). Gathers data of implementation used in functions and report this info through performance TS; TS modifications for implementations control;
-
- 23 Sep, 2014 1 commit
-
-
vbystricky authored
-
- 13 Aug, 2014 1 commit
-
-
Adil Ibragimov authored
1. someMatrix.data -> someMatrix.prt() 2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex ) 3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>() 4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
-
- 10 Aug, 2014 1 commit
-
-
Vadim Pisarevsky authored
-
- 08 Aug, 2014 1 commit
-
-
Vadim Pisarevsky authored
ECC patch by the author (G. Evangelidis); fixed some OCL Farneback optical flow test failures on Mac
-
- 05 Aug, 2014 1 commit
-
-
Alexander Alekhin authored
-
- 07 Jul, 2014 1 commit
-
-
Ernest Galbrun authored
-