Alexander Alekhin
f1e50ecab3
ts: fix missing std::tr1 (C++17)
7 years ago
Alexander Alekhin
a0ce12f8ba
Merge pull request #10767 from alalek:fix_cmake
7 years ago
Alexander Alekhin
3d6659112f
cmake: fix includes processing
7 years ago
Rostislav Vasilikhin
1055f9d208
Merge pull request #10757 from savuor:test_hist_renew
...
* old types removed
* QueryHist tests: new types
* ThreshHist tests: new types
* CalcHist tests: new types
* CalcBackProject tests: new types
* CalcBackProjectPatch tests: new types
* const ref added
7 years ago
Alexander Alekhin
403c3c3d03
Merge pull request #10766 from mshabunin:fix-world-interface-include
7 years ago
Alexander Alekhin
877b175565
Merge pull request #10758 from mshabunin:allow-many-contrib
7 years ago
Alexander Alekhin
82f889d9b8
Merge pull request #10765 from BelBES:sb/findContours_fix
7 years ago
Maksim Shabunin
7eb37bd1dd
Fixed components INTERFACE_INCLUDE_DIRECTORY property in "world" builds
7 years ago
Harshal Nishar
384fa95680
Fix in Canny when Sobel apertureSize is 7 ( #10743 )
...
* Fixing a bug in Canny implemetation when Sobel aperture size is 7.
* Fixing the bug in Canny accross variants and in test_canny.cpp
* Replacing a tab with white space
7 years ago
sergeybe
2266a8c85f
fix FindContours default offset for CV_LINK_RUNS method
7 years ago
Vadim Pisarevsky
83761d5f8e
Merge pull request #10761 from seiko2plus:issue10753
7 years ago
Alexander Alekhin
ecbd5b0574
Merge pull request #10751 from nglee:dev
7 years ago
Ya-Chiu Wu
c8d8b1fbcd
Merge pull request #10553 from GlueCrow:bgfg_knn_opencl
...
Add ocl version BackgroundSubtractorKNN (#10553 )
* Add ocl version bgfg_knn
* Add ocl KNN perf test
* ocl KNN: Avoid unnecessary initializing when non-UMat parameters are used
* video: turn off OpenCL for color KNN on Intel devices
due performance degradation
* video: turn off KNN OpenCL on Apple devices with Intel iGPU
due process freeze during clBuildProgram() call
7 years ago
Alexander Alekhin
92fb3fb33f
Merge pull request #10763 from alalek:issue_10760
7 years ago
Alexander Alekhin
02bc17be6f
js: filterout OpenCL headers
7 years ago
Sayed Adel
534dcbe017
core:ppc Fix compile issue with Eigen
7 years ago
Alexander Alekhin
12cd3b55ec
Merge pull request #10756 from terfendail:orb_firstlevel
7 years ago
Alexander Alekhin
bbfa239036
Merge pull request #10706 from alalek:exception_opencv_version
7 years ago
Alexander Alekhin
c96630c9f0
Merge pull request #10705 from alalek:opencv_version_update
7 years ago
Maksim Shabunin
82aff110b7
cmake: allow providing list of extra modules paths
7 years ago
Vitaly Tuzov
26321795f7
Fixed assertion in ORB::setFirstLevel()
7 years ago
Vadim Pisarevsky
f780ee12a0
Merge pull request #10690 from terfendail:orb_firstlevel
7 years ago
Maksim Shabunin
e56d6054aa
Do not build protobuf without dnn ( #10689 )
...
* Do not build protobuf if dnn is disabled
* Added BUILD_LIST cmake option to the cache
* Moved protobuf to the top level
* Fixed static build
* Fixed world build
* fixup! Fixed world build
7 years ago
Vadim Pisarevsky
36222c9eed
Merge pull request #10730 from dkurt:dnn_faster_rcnn_rfcn_tests
7 years ago
Vadim Pisarevsky
8436dac090
Merge pull request #10742 from alalek:fix_winrt_fs_build
7 years ago
Vadim Pisarevsky
713ec7be45
Merge pull request #10746 from dkurt:dnn_batch_norm_from_nvidia_caffe
7 years ago
Alexander Alekhin
42569cfd61
Merge pull request #10748 from dkurt:fix_dnn_slice_layer
7 years ago
Alexander Alekhin
7c8a3da0ac
Merge pull request #10709 from alalek:cleanup_2018
7 years ago
Alexander Alekhin
9d25bd583f
Merge pull request #10754 from dkurt:dnn_ocl_gemv_min_globalsize
7 years ago
Vadim Pisarevsky
85af8735ab
Merge pull request #10749 from alalek:issue_10736
7 years ago
Aditya Rohan
ccea0a831a
Merge pull request #10732 from Riyuzakii:10598
...
* Introduces error throw for line drawn with THICKNESS=0
7 years ago
Dmitry Kurtaev
65a6674c6e
ocl4dnnGEMV in case of row_size < 4
7 years ago
Alexander Alekhin
9698b93d10
Merge pull request #10717 from pengli:dnn
7 years ago
Alexander Alekhin
78ce5b815d
Merge pull request #10733 from alalek:issue_10654
7 years ago
Li Peng
6aec71d7ee
mvn layer ocl update
...
it fuse ocl kernels to reduce kernel enqueue
Signed-off-by: Li Peng <peng.li@intel.com>
7 years ago
Li Peng
83b16ab7b7
fix extra spaces in build option
...
Signed-off-by: Li Peng <peng.li@intel.com>
7 years ago
Li Peng
54c81cbde4
eltwise layer SUM op update
...
Signed-off-by: Li Peng <peng.li@intel.com>
7 years ago
Namgoo Lee
3cf535926a
cuda_stream: do not allocate GPU memory by default ( fixes #8725 )
7 years ago
Alexander Alekhin
35738bcadd
samples: remove orphan documentation snippet: SBM_Sample.cpp
7 years ago
Dmitry Kurtaev
184862582c
Fix slice layer from TensorFlow
7 years ago
Alexander Alekhin
c4f9ff0285
cmake: avoid using of pkg-config in cross-compilation mode unconditionally
...
- specify PKG_CONFIG_LIBDIR environment variable to new target SYSROOT
7 years ago
Arjan van de Ven
a75840d19c
Merge pull request #10468 from fenrus75:avx512-2
...
* Add a 512 bit codepath to the AVX512 fastConv function
this patch adds a 512 wide codepath to the fastConv() function for
AVX512 use.
The basic idea is to process the first N * 16 elements of the vector
with avx512, and then run the rest of the vector using the traditional
AVX2 codepath.
* dnn: use unaligned AVX512 load (OpenCV aligns data on 32-byte boundary)
* dnn: change "vecsize" condition for AVX512
* dnn: fix indentation
7 years ago
Alexander Alekhin
f06c44f1f1
Merge pull request #10701 from dkurt:tf_ave_pooling
7 years ago
Dmitry Kurtaev
844f1d0281
Fix Batch Normalization layer imported from NVIDIA Caffe.
7 years ago
Dmitry Kurtaev
a2e9bfbaf4
Fix padding for average pooling from TensorFlow
7 years ago
Alexander Alekhin
2e45095e8d
winrt: fix build
7 years ago
Alexander Alekhin
027da35c33
Merge pull request #10738 from tomoaki0705:fixBuildVisualStudio
7 years ago
Alexander Alekhin
2c1161a6f9
Merge pull request #10735 from seiko2plus:coreYieldPPC
7 years ago
Tomoaki Teshima
5f4b48da34
fix build error on Visual Studio 2013 and earlier
7 years ago
Sayed Adel
4e1d396ce1
core:ppc Add yield support
7 years ago