Dan Mašek
8c1d8eccdd
Merge pull request #11207 from dan-masek:add_redirect_error
...
* Add Python support for error message handlers.
* Move the static variable to the only function that uses it.
* Remove the optional param (user data), since this can already be handled by closures.
* Correct the help string.
* python: added redirectError test
7 years ago
Dan Mašek
f6e299b58b
Fix #11206
7 years ago
Dan Mašek
eae3ed0c08
Fix a leak described in issue #11205
7 years ago
Dmitry Kurtaev
8d8f3bca6f
Update links to OpenCV's face detection network
7 years ago
Arkadiusz Raj
619e4c94d5
Protection to not run Eth config when USB camera is connected
7 years ago
Dmitry Kurtaev
818a91f4f7
Update Torch testdata
7 years ago
Dmitry Kurtaev
598039c0ed
Fix embedded Torch's nn.ConcatTable
7 years ago
Alexander Alekhin
6f69800d0c
core: propagate parallel_for() exceptions
7 years ago
Alexander Alekhin
82fd00af99
fix build issues with QT/OpenGL
7 years ago
ltqusst
0d646490f5
Fix #10557
...
Fix overflow bugs in conversion from NV12 VA-surface/D3D11texture2D to OpenCL UMat
7 years ago
catree
a885480c9e
Remove temporary file used for test.
7 years ago
Alexander Alekhin
8c4b5b6a70
core(test): parallel_for test with exception
7 years ago
RAJKIRAN NATARAJAN
6d83a80385
Merge pull request #11176 from saskatchewancatch:issue-11165
...
* fix cv::imwrite to allow cv::UMat and vectors of it to be written
* cv::imwrite failure handling improvements
* Unit test for regression testing imwrite support for and fix whitespace
7 years ago
Maksim Shabunin
439072a2a6
Fixed two warnings produced by clang
7 years ago
Alexander Alekhin
7f63b31ca8
avoid calling of setNumThreads() to respect user settings
7 years ago
Alexander Alekhin
87498bc6d4
cmake: workaround CPATH ipp_iw issue
...
CPATH entries are processed before any -isystem:
https://gcc.gnu.org/onlinedocs/cpp/Environment-Variables.html
7 years ago
Alexander Alekhin
8a0cc5009e
build: eliminate MSVC warning
7 years ago
Alexander Alekhin
25be4186bc
python: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
6c8014e7d1
cmake: disable checks for protobuf generated files
7 years ago
Alexander Alekhin
d7e9201434
misc: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
2bd4f2c3a6
videostab: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
a8eb3e1b29
superres: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
4a0fa57614
shape: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
4df4a37b11
flann: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
1ca7ae9630
video: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
e741b71dac
photo: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
225bae1387
stitching: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
4d0dd3e509
ml: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
3314966acb
objdetect: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
1060c0f439
dnn: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
bdbd0129af
calib3d: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
0854dc3320
features2d: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
8f0669c300
videoio: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
a91953b15c
imgcodecs: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
5d36ee2fe7
imgproc: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
9111538bfb
core: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
0587f92d96
cmake: disable override warnings in 3rdparty code and viz
7 years ago
Alexander Alekhin
773877cd12
ts: apply CV_OVERRIDE/CV_FINAL
...
- disable "-Wsuggest-override" in tests
7 years ago
Alexander Alekhin
84980741a8
core: add CV_OVERRIDE/CV_FINAL macros
7 years ago
Dmitry Kurtaev
e039fc3a63
Replace protobuf's ReleaseLast to RemoveLast to deallocate memory.
...
Change an order of PriorBox layer operations.
7 years ago
Dmitry Kurtaev
2f3a9ba1d4
Update OpenCVDetectInferenceEngine.cmake
7 years ago
LaurentBerger
03eb463f1c
Solves #11156 ( #11160 )
...
* Solves #11156
* Check file size for all file format. Disable APPEND if file is empty
* Add test for APPEND mode
7 years ago
Tomoaki Teshima
c14578649d
fix build error on Jetson
7 years ago
Collen Jones
687ccdf8db
Fix link to Hershey fonts
7 years ago
corley
a4b9ce764c
Fixed silent failures in getting and setting properties
7 years ago
Alexander Alekhin
7d8f1dde26
core(persistence): disable checks for base64 streams
7 years ago
codingforfun
24e2e0d3f9
#11143 [FIX] Normalize node risk with sample weight sum
...
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()
```
7 years ago
Alexander Alekhin
f4c4b01455
core: added checks and "fixit" items for persistence parsers
...
To raise errors with proper messages of the problems.
7 years ago
Alexander Alekhin
08941b7890
cmake: avoid amending of CMAKE_COMPILER_IS_[GNUCXX|CLANGCXX|CCACHE] vars
...
- 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
7 years ago
Alexander Alekhin
d1311518a3
core: test-sample for FIXED_TYPE demonstration
...
with implementation of functions with multiple output formats
7 years ago