Alexander Alekhin
69ac19d82d
Merge pull request #17023 from poelmanc:patch-1
5 years ago
Conrad Poelman
b77fe9d624
Remove std::binary_function as it's invalid C++
...
std::binary_function was deprecated with C++11 and removed in C++17. It provided just two typedefs which in this case were unused.
5 years ago
Xiping Yan
5c7c80dd27
Merge pull request #17028 from xipingyan:patch-1
...
* Update OpenCVFindVA_INTEL.cmake
When set env VA_INTEL_IOCL_ROOT, "if($ENV{VA_INTEL_IOCL_ROOT})" don't work.
My modification as follow.
- if($ENV{VA_INTEL_IOCL_ROOT})
+ if(DEFINED ENV{VA_INTEL_IOCL_ROOT})
Refer: https://cmake.org/cmake/help/latest/variable/ENV.html
* based on merge comment, update code
5 years ago
Alexander Alekhin
d7abb641ca
core(test): add InputArray(MatExpr) fetch test
5 years ago
Tomoaki Teshima
4e75f31c55
fix test failure on Jetson Nano/TX1/TX2
5 years ago
Alexander Alekhin
e1f14fcac7
Merge pull request #16975 from shimat:Branch_4.3.0
5 years ago
shimat
39d3bbb601
fix error at #include <window_winrt_bridge.hpp>
5 years ago
Alexander Alekhin
4d35a46c48
Merge pull request #17010 from alalek:issue_16896
5 years ago
Alexander Alekhin
2c9d149ac2
Merge pull request #16993 from asmorkalov:as/faq_wiki
5 years ago
Alexander Alekhin
06bf845783
Merge pull request #16979 from dkurt:dnn_fused_resize_conv
5 years ago
Alexander Smorkalov
f496a37340
Migrated FAQ page to Github Wiki
5 years ago
Alexander Alekhin
b745e1c43a
Merge pull request #17014 from dkurt:dnn_onnx_elu
5 years ago
Dmitry Kurtaev
21ed892489
Fix Elu import from ONNX
5 years ago
Alexander Alekhin
5504d94e36
cmake: update generation of 'uninstall' target
...
Details: https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake
5 years ago
Alexander Alekhin
adf54d41d5
Merge pull request #16905 from dkurt:dnn_tf2_keras
5 years ago
mehlukas
75bd9f86b2
Merge pull request #16889 from mehlukas:3.4-consolidateImshow
...
* consolidate tutorials on image read/display/write
* fix unsused variables
* apply requested changes
* apply requested changes
* fix mistake
5 years ago
Liubov Batanina
734771418e
Merge pull request #16840 from l-bat:matmul_inputs
...
* Supported FullyConnected layer with two inputs
* Skipped test
* Fix conditions
* Added OpenCL support
* Supported ReduceMean3D
* Supported Expand layer
* Fix warning
* Added Normalize subgraph
* refactoring
* Used addLayer
* Fix check
* Used addLayer
* Skip failed test
* Added normalize1 subgraph
* Fix comments
5 years ago
Alexander Alekhin
51a8885566
Merge pull request #16984 from CSharperMantle:argparse-patch-1
5 years ago
Alexander Alekhin
60c382d8f1
Merge pull request #17005 from tomoaki0705:fixHoughKernelLocal
5 years ago
Tomoaki Teshima
3371e679ce
fix OpenCL spec violation
5 years ago
Alexander Alekhin
ce5626db45
Merge pull request #16878 from dkurt:fix_16877
5 years ago
Alexander Alekhin
1377b9b736
Merge pull request #16970 from l-bat:fix_enet
5 years ago
Alexander Alekhin
936428cb3b
core(MatExpr) fetch result before InputArray wrap
...
- avoid multiple expression evaluations
- avoid issues with reduced support of InputArray::EXPR
5 years ago
Alexander Alekhin
c305455cb2
Merge pull request #16967 from benji1123:patch-1
5 years ago
Adam Fowles
8334932a26
Merge pull request #16992 from afowles:fix-forEach-segfault
...
* Fixed divide by zero error in forEach
* Dedicated assertion for !empty
5 years ago
Alexander Alekhin
99d29c9d39
Merge pull request #16982 from tomoaki0705:houghLinesOCL
5 years ago
Liubov Batanina
a448d3a6aa
Fix ENet test with OpenVINO 2020.2
5 years ago
Ben Li
1a6b4d6ce6
typo fix
5 years ago
Alexander Alekhin
a15417fe74
Merge pull request #16980 from albert-github:feature/bug_doxyfile
5 years ago
Bao "Mantle" Rong
3dcb775d16
switch to argparse
5 years ago
albert-github
2d387356de
Incorrect PREDEFINED setting.
...
The PREDEFINED setting for had a space between the define name and the equal sign and this is not allowed, it results in the warning:
```
error: Illegal PREDEFINED format '=', no define name specified
```
according to the documentation explicitly states that no space is allowed:
> The PREDEFINED tag can be used to specify one or more macro names that are defined before the preprocessor is started (similar to the -D option of e.g. gcc). The argument of the tag is a list of macros of the form: name or name=definition (no spaces). If the definition and the "=" are omitted, "=1" is assumed. To prevent a macro definition from being undefined via #undef or recursively expanded use the := operator instead of the = operator.
5 years ago
Tomoaki Teshima
07c3aae315
let the test pass on Mali G52 (ODROID-N2)
5 years ago
Dmitry Kurtaev
b36eba7fab
Support FusedResizeAndPadConv2D from TensorFlow
5 years ago
Dmitry Kurtaev
8574a757f9
Case sensitive dnn layers types
5 years ago
Alexander Alekhin
0812207db7
Merge tag '3.4.10'
5 years ago
Alexander Alekhin
1cc1e6fa56
release: OpenCV 3.4.10
5 years ago
Alexander Alekhin
6216bf9221
Merge pull request #16959 from alalek:winpack_dldt_update
5 years ago
Alexander Alekhin
388a7ce86e
Merge pull request #16956 from alalek:ocl_control_buffer_mapping
5 years ago
Alexander Alekhin
5d95a500ad
winpack_dldt: readme update
5 years ago
Alexander Alekhin
95341c2b1b
Merge pull request #16953 from mshabunin:fix-msmf-writer-fps
5 years ago
Alexander Alekhin
54063c40de
core(ocl): options to control buffer access flags
...
- control using of clEnqueueMapBuffer or clEnqueueReadBuffer[Rect]
- added benchmarks with OpenCL buffer access use cases
5 years ago
Maksim Shabunin
585593e9fc
videoio: fixed MSMF writer fps handling
5 years ago
Alexander Alekhin
f15e885baf
Merge pull request #16950 from alalek:fix_16945
5 years ago
Alexander Alekhin
9109cb1ec6
Merge pull request #16948 from alalek:warning_16739
5 years ago
Alexander Alekhin
dc9ee53ff5
stitching: fix range check in DpSeamFinder::computeCosts
5 years ago
Alexander Alekhin
1485968fc4
Merge pull request #16947 from mshabunin:fix-msmf-convert-format
5 years ago
Alexander Alekhin
09134ac881
core: emit warning ONCE on ambiguous MatExpr processing
5 years ago
Maksim Shabunin
433c5199fd
videoio: fixed conversion in MSMF backend
5 years ago
Alexander Alekhin
396f43d674
Merge pull request #16938 from alalek:winpack_samples_update
5 years ago
Alexander Alekhin
e12b1c2209
build: updates for winpack dldt
5 years ago