- 28 Mar, 2018 15 commits
-
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Dmitry Kurtaev authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Alexander Alekhin authored
-
LaurentBerger authored
* Solves #11156 * Check file size for all file format. Disable APPEND if file is empty * Add test for APPEND mode
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Dmitry Kurtaev authored
-
Tomoaki Teshima authored
-
Collen Jones authored
-
- 27 Mar, 2018 9 commits
-
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
codingforfun authored
In case of regression trees, node risk is computed as sum of squared error. To get a meaningfull value to compare with it needs to be normalized to the number of samples in the node (or more generally to the sum of sample weights in this node). Otherwise the sum of squared error is highly dependend on the number of samples in the node and comparision with `regressionAccuracy` parameter is not very meaningful. After normalization `node_risk` means in fact sample variance for all samples in the node, which makes much more sence and seams to be what was originaly intended by the code given that node risk is later used as a split termination criteria by ``` sqrt(node.node_risk) < params.getRegressionAccuracy() ```
-
Alexander Alekhin authored
-
Alexander Alekhin authored
- Recommended compiler checks: - GCC: CV_GCC - Clang: CV_CLANG - fixed problem with CMAKE_CXX_COMPILER_ID=Clang/AppleClang mess on MacOSX Details: cmake --help-policy CMP0025 - do not declare Clang as GCC compiler
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
- 26 Mar, 2018 7 commits
-
-
corley authored
Fixed a couple of memory leaks in videoInput::getDevice() when multiple devices are present in the system
-
kinchungwong authored
Minor improvement to SSE code in HOGDescriptor::computeGradient, replace emulation of _mm_mullo_epi32 with constant multiplicand 3 with two _mm_add_epi32. OpenCV issue #11161
-
Alexander Alekhin authored
- CV_RGB() macro is moved into opencv2/imgproc.hpp from imgproc_c.h - samples/cpp/filestorage_base64.cpp is dropped
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Dmitry Kurtaev authored
-
Namgoo Lee authored
-
- 25 Mar, 2018 1 commit
-
-
Andrei Costinescu authored
My build fails with the error: "C:/PROGRA~1/MINGW-~1/X86_64~1.0-P/mingw64/lib/gcc/x86_64-w64-mingw32/7.2.0/include/c++/cmath:1136:11: error: '::hypot' has not been declared". I have tried to fix it by adding "#include <cmath>" before the line "#include <Python.h>" but then the build has failed with the error: "C:/PROGRA~1/MINGW-~1/X86_64~1.0-P/mingw64/lib/gcc/x86_64-w64-mingw32/7.2.0/include/c++/math.h:91:12:: error: 'std::_hypot' has not been declared". Adding "#include <math.h>" allowed me to build opencv.
-
- 24 Mar, 2018 2 commits
-
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
- 23 Mar, 2018 5 commits
-
-
Anthony Wertz authored
Sets a higher limit on videoio's AVI container's maximum chunk size, and adds an explanation of the assertion. Closes #11126
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Dmitry Kurtaev authored
Fix batch norm in training phase.
-
- 22 Mar, 2018 1 commit
-
-
Naoto Mizuno authored
-