Paul Jurczak
f64d807863
Added to description of WCube constructor
...
`WCube` constructor reorders `min_point`, `max_point` parameters when necessary. I added this info to the description.
5 years ago
Alexander Alekhin
81c2f3d194
Merge pull request #17081 from alalek:backport_17056
5 years ago
Alexander Alekhin
8c77f35fce
Merge pull request #17079 from tomoaki0705:fixCUDABgSgmMOG
5 years ago
Alexander Alekhin
ff4ce9f7b1
build: winpack_dldt with dldt 2020.2
5 years ago
Tomoaki Teshima
f39784c584
fix test failure on Jetson TX2
5 years ago
Alexander Alekhin
98e38b2a41
Merge pull request #17017 from VadimLevin:dev/vlevin/header-parser-explicit-support
5 years ago
Vadim Levin
1d8c73cf6c
feature: Added `explicit` support to header parser
...
- It is safe to remove `explicit` keyword for constructors with 1
argument, because it is C++ specific keyword and does not affect any of
the generated binding.
5 years ago
Alexander Alekhin
ef68cc3d5f
dnn: use OpenVINO 2020.2 defines
...
original commit: 45263d7642
5 years ago
Vadim Levin
18550b4601
test: Added tests for VideoCapture constructors in java
5 years ago
Alexander Alekhin
c8f1948d58
core: drop EXPR handing code in InputArray
5 years ago
Alexander Alekhin
f6de25b6cb
Merge pull request #17060 from dkurt:dnn_align_ie_pool
5 years ago
Alexander Alekhin
b3514a5708
Merge pull request #17049 from ilya-lavrenov:il/nn-builder
5 years ago
Ilya Lavrenov
91b0100287
Fixed compilation when NN builder is not built
5 years ago
Dmitry Kurtaev
870a775d7d
Align DLIE and nGraph average pooling layers
5 years ago
Vahid Nikoofard
575a609b80
Update calcBackProject_Demo1.py
...
To round a ndarray it's necessary to use np.round() instead to Built-in Python round()
5 years ago
Alexander Alekhin
675342ecd9
Merge pull request #17025 from tomoaki0705:fixTestFailureCUDABruteForceNonLocalMeans
5 years ago
Alexander Alekhin
245b2fec34
Merge pull request #16925 from dkurt:dnn_ssd.pytorch
5 years ago
Alexander Alekhin
49a75079f2
Merge pull request #17047 from alalek:fix_permissions
5 years ago
Dmitry Kurtaev
d3f9ad1145
Enable ONNX SSD from https://github.com/amdegroot/ssd.pytorch
5 years ago
Alexander Alekhin
46615ffc4a
Merge pull request #16985 from ashishkrshrivastava:padfusion
5 years ago
Alexander Alekhin
f0ffc52435
fix files permissions
5 years ago
Alexander Alekhin
f7d029cfce
Merge pull request #17039 from tomoaki0705:fixCudaImgprocFailure
5 years ago
Tomoaki Teshima
1eb63cfc42
fix test failure on Jetson TX1/TX2/Nano
5 years ago
Alexander Alekhin
43ff8f8e8d
Merge pull request #17006 from tpoisonooo:patch-1
5 years ago
tpoisonooo
b11a3a0820
Update grfmt_pxm.cpp
...
remove comment in .ppm
5 years ago
AshihsKrShrivastava
bef6b6282c
ReflecitonPad2d and ZeroPad2d Subgraph fusion added
5 years ago
Alexander Alekhin
9c58a7cb1e
Merge pull request #16653 from alalek:core_inputarray_matexpr
5 years ago
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