Alexander Alekhin
abfcb60118
Merge pull request #13838 from smirnov-alexey:gapi_add_nv12_to_rgb
6 years ago
smirnov-alexey
406392e13d
Introduces yuv420p(nv12) to rgb and bgr color conversion
6 years ago
Alexander Alekhin
54a1bbe1c4
Merge pull request #13812 from smirnov-alexey:gapi_fix_sobelxy_valgrind
6 years ago
smirnov-alexey
caf438c63b
Fixes an issue with valgrind and sobelxy
6 years ago
Alexander Alekhin
dfef04b325
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
6 years ago
Alexander Alekhin
b1caa4f4d5
Merge pull request #13803 from thangktran:thangktran/fix-misleading-runtime-assertion-calibrateCamera
6 years ago
Alexander Alekhin
9e7014b59f
Merge pull request #13799 from dkurt:dnn_ie_future_2
6 years ago
Thang Tran
a1f4e65d03
calib3d: Fix calibrateCamera() misleading error
...
objectPoints and imagePoints are not checked whether they're empty and
cause checkVector() to fail, thus result in a wrong error message.
Fixes: https://github.com/opencv/opencv/issues/6002
6 years ago
Alexander Alekhin
f3d62c94b1
Merge pull request #13800 from dkurt:fix_nvidia_caffe
6 years ago
Alexander Alekhin
2e28ff78c1
Merge pull request #13780 from alalek:core_dispatch_convertTo
6 years ago
Dmitry Kurtaev
1606137df2
Read raw floats data from Caffe models
6 years ago
Dmitry Kurtaev
0711dab09d
Fix Intel's Inference Engine backend from future. Second try.
6 years ago
Alexander Alekhin
5f57842575
Merge pull request #13794 from alalek:backport_13786
6 years ago
Alexander Alekhin
4e16ec2826
Merge pull request #13793 from vertextau:tutorial-fix
6 years ago
Alexander Alekhin
f8ac46ba07
Merge pull request #13786 from ka7:spelling
6 years ago
klemens
5d9c6723ee
spelling fixes
...
backport 997b7b18af
6 years ago
Oleh
c8777da2d6
Update video_input_psnr_ssim.markdown
6 years ago
klemens
997b7b18af
spelling fixes
6 years ago
Alexander Alekhin
b17c1c6721
Merge pull request #13782 from paroj:pypath
6 years ago
Alexander Alekhin
f8786c9bf4
Merge pull request #13783 from alalek:fix_13741
6 years ago
Alexander Alekhin
f414c16c13
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
6 years ago
Pavel Rojtberg
f0ef4b2246
python: sys.path[0] is reserved for the main script
6 years ago
Alexander Alekhin
d32d576d6d
core: dispatch convert_scale
6 years ago
Alexander Alekhin
39b90ae9fb
core: dispatch convert
6 years ago
Alexander Alekhin
c6f39870ff
Merge pull request #13776 from alalek:fix_13741
6 years ago
Alexander Alekhin
757d8ac8f7
Merge pull request #13769 from savuor:cvtColor_tests_16u_32f
6 years ago
Alexander Alekhin
5e2a81dc26
Merge pull request #13766 from dkurt:dnn_mask_rcnn_atrous
6 years ago
Alexander Alekhin
52050ebe32
Merge pull request #13760 from AnastasiaaSenina:fix-bug
6 years ago
Alexey Smirnov
b1cc114b7b
Merge pull request #13723 from smirnov-alexey:gapi_add_sobelxy
...
* Add Sobel kernel which returns both dx and dy
* Splice dx and dy and extend add_border function
Also change some tests parameters
* Add borderValue parameter in test
* Introduces fluid kernel for sobelxy
Adds tests (basic and performance) on new backend
* Introduces BufHelper struct for some arithmetic
6 years ago
Alexander Alekhin
33d477e049
core: keep history of convert_scale.cpp
6 years ago
Alexander Alekhin
c4abdb8050
core: clone convert_scale.dispatch.cpp
6 years ago
Alexander Alekhin
0af9e19be7
core: clone convert_scale.simd.hpp
6 years ago
Alexander Alekhin
b6a0acb8f6
core: keep history of convert.cpp
6 years ago
Alexander Alekhin
5527c41468
core: clone convert.dispatch.cpp
6 years ago
Alexander Alekhin
1629e29b98
core: clone convert.simd.hpp
6 years ago
Alexander Alekhin
3091d10b00
Merge pull request #13746 from allnes:fix_step_dnn
6 years ago
Alexey Smirnov
766fd20faa
Merge pull request #13745 from smirnov-alexey:gapi_add_gout_overloading
...
* Add GOut overloading for tuple of parameter pack
* Move getGOut_impl into namespace and add const to input references
6 years ago
Alexander Alekhin
8f7e92e466
Merge pull request #13764 from nglee:dev_CudaCLAHE16bitSupport
6 years ago
AnastasiaaSenina
d7b1f28a90
fixed bug: added threshold for variables 'rotate_a', ' rotate_c'
6 years ago
Rostislav Vasilikhin
4e679e1cc5
disabled 16u and 32f perf tests
6 years ago
Alexander Alekhin
d2174e2e75
Merge pull request #13775 from terfendail:morph_fix
6 years ago
Rostislav Vasilikhin
87f651c119
disabled sanity check for 32f
6 years ago
Vitaly Tuzov
07c10d6fc3
Fixed out of bound reading issue in erode() and dilate()
6 years ago
Alexander Alekhin
66d9a33b50
core(ocl): fix log messages
6 years ago
Alexey Smirnov
315e7fbbee
Merge pull request #13721 from smirnov-alexey:gapi_add_normalize
...
GAPI: Add normalize kernel in G-API (#13721 )
* Add normalize kernel in G-API
In addition add several tests on new kernel
* Fix indentations and normalize test structure
* Move normalize kernel from imgproc to core
Set default parameter ddepth to -1
* Fix alignment
6 years ago
Alexander Nesterov
9cbdb48d6d
Fix change step
6 years ago
Namgoo Lee
fb8e652c3f
Add CV_16UC1 support for cuda::CLAHE
...
Due to size limit of shared memory, histogram is built on
the global memory for CV_16UC1 case.
The amount of memory needed for building histogram is:
65536 * 4byte = 256KB
and shared memory limit is 48KB typically.
Added test cases for CV_16UC1 and various clip limits.
Added perf tests for CV_16UC1 on both CPU and CUDA code.
There was also a bug in CV_8UC1 case when redistributing
"residual" clipped pixels. Adding the test case where clip
limit is 5.0 exposes this bug.
6 years ago
Rostislav Vasilikhin
bbedebb57c
perf tests for cvtColor for 16U and 32f added
6 years ago
Alexander Alekhin
f67b197d49
Merge pull request #13738 from dkurt:dnn_ie_lock_shared_plugins
6 years ago
Dmitry Kurtaev
6ad3bf3130
Enable ResNet-based Mask-RCNN models from TensorFlow Object Detection API
6 years ago