- 05 Jan, 2018 1 commit
-
-
Alexander Alekhin authored
warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
-
- 28 Nov, 2017 2 commits
- 27 Nov, 2017 2 commits
- 18 Sep, 2017 2 commits
-
-
Dmitry Kurtaev authored
-
Arvid Piehl Lauritsen Böttiger authored
-
- 08 Sep, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 23 Aug, 2017 1 commit
-
-
Pavel Vlasov authored
- Optimizations set change. Now IPP integrations will provide code for SSE42, AVX2 and AVX512 (SKX) CPUs only. For HW below SSE42 IPP code is disabled. - Performance regressions fixes for IPP code paths; - cv::boxFilter integration improvement; - cv::filter2D integration improvement;
-
- 30 Jun, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 23 May, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 06 Apr, 2017 1 commit
-
-
Vitaly Tuzov authored
-
- 21 Feb, 2017 1 commit
-
-
Vitaly Tuzov authored
-
- 14 Dec, 2016 1 commit
-
-
Rostislav Vasilikhin authored
-
- 29 Nov, 2016 1 commit
-
-
Vitaly Tuzov authored
-
- 11 Oct, 2016 1 commit
-
-
Tomoaki Teshima authored
* add performance test for 32F and 64F threshold * requires update of opencv_extra
-
- 19 Aug, 2016 2 commits
-
-
Pavel Vlasov authored
-
Pavel Vlasov authored
-
- 02 Aug, 2016 1 commit
-
-
k-shinotsuka authored
-
- 20 Jul, 2016 1 commit
-
-
Alexander Alekhin authored
-
- 12 Jul, 2016 1 commit
-
-
Tomoaki Teshima authored
-
- 09 Jul, 2016 1 commit
-
-
Tomoaki Teshima authored
* use NEON under aarch64 only * check 64F version correctly
-
- 17 May, 2016 2 commits
-
-
atinfinity authored
-
atinfinity authored
-
- 20 Oct, 2015 1 commit
-
-
Maksim Shabunin authored
-
- 25 Sep, 2015 1 commit
-
-
Pavel Vlasov authored
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE to manage changes between updates more easily. IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;
-
- 06 Aug, 2015 1 commit
-
-
Wenju He authored
-
- 25 Jun, 2015 1 commit
-
-
LaurentBerger authored
number
-
- 24 Jun, 2015 1 commit
-
-
Pavel Vlasov authored
Some code style corrections;
-
- 22 Jun, 2015 1 commit
-
-
LaurentBerger authored
gaussianBlur with CV_32F. hence rouding error are avoided
-
- 18 Jun, 2015 1 commit
-
-
Dmitry Budnikov authored
Removed IPP port for tiny arithm.cpp functions Additional warnings fix on various platforms. Build without OPENCL and GCC warnings fixed Fixed warnings, trailing spaces and removed unused secure_cpy. IPP code refactored. IPP code path implemented as separate static functions to simplify future work with IPP code and make it more readable.
-
- 27 Feb, 2015 1 commit
-
-
Vladislav Vinogradov authored
-
- 26 Feb, 2015 1 commit
-
-
Vladislav Vinogradov authored
-
- 05 Nov, 2014 1 commit
-
-
Miroslav Benes authored
Make Otsu and Triangle algorithms mutually exclusive in cv::threshold code. Signed-off-by:
Miroslav Benes <mbenes@suse.cz>
-
- 27 Oct, 2014 1 commit
-
-
Maksim Shabunin authored
-
- 22 Oct, 2014 1 commit
-
-
Miroslav Benes authored
Add Triangle method for automatic threshold computation next to the existing Otsu's method. Triangle deals better with images whose histogram does not contain dominant peak. See paper Zack GW, Rogers WE, Latt SA.: Automatic measurement of sister chromatid exchange frequency. J Histochem Cytochem. 1977 Jul;25(7):741-53.
-
- 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;
-
- 26 Sep, 2014 1 commit
-
-
Ilya Lavrenov authored
-
- 14 Aug, 2014 1 commit
-
-
Alexander Karsakov 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
-