Alexander Alekhin
236f383969
Merge pull request #12037 from dkurt:test_openvino_models
6 years ago
Alexander Alekhin
93abdbf25e
Merge pull request #12041 from mshabunin:fix-static-2
6 years ago
Alexander Alekhin
391b9586ac
Merge pull request #12042 from dkurt:fix_opencv_as_submodule
6 years ago
Alexander Alekhin
4283309daa
dnn: update tests for OpenVINO models
6 years ago
Alexander Alekhin
6e767e2376
ts: add findDataDirectory() function
6 years ago
Dmitry Kurtaev
0c4d5ffecd
Do not copy cv_cpu_helper.h to parent if OpenCV is a submodule
6 years ago
Dmitry Kurtaev
28e08ae0bd
Add a sample which tests OpenVINO models
6 years ago
Maksim Shabunin
e0603bb45f
Fixed several issues found by static analysis tools
6 years ago
Alexander Alekhin
7d40fcead5
Merge pull request #12031 from alalek:dnn_ocl_eliminate_getUMat_with_bad_lifetime
6 years ago
Paul92
8c7555523b
Merge pull request #12032 from Paul92:mser-sample-improvments
...
Mser sample improvments (#12032 )
* Fixed bug in detect_mser sample
Wrong number of colors used to generate the synthetic images
* Formatting improvements
* Using safer casts
* Improved readability of legend generation
* Various readability fixes in detect_mser sample
6 years ago
Alexander Alekhin
b117302bca
Merge pull request #12016 from tyl12:fix_videoio_static_para
6 years ago
Alexander Alekhin
e1205d046a
Merge pull request #12003 from mshabunin:avi-error-messages
6 years ago
Teng Yiliang
dadde75ef0
use struct member width_set/height_set to replace static width/height.
...
the static variables will cause race-condition when operating in
multithread scenarios.
Signed-off-by: Teng Yiliang <ylteng@outlook.com>
Signed-off-by: Teng Yiliang <yiliang.teng@weimob.com>
6 years ago
Alexander Alekhin
ee743afebe
dnn(ocl): don't use getUMat() for long live objects
6 years ago
Alexander Alekhin
767b31cfbf
Merge pull request #12029 from tomoaki0705:fixBuildVS2013BinarySuffix
6 years ago
Tomoaki Teshima
18abe54497
fix build error on Visual Studio 2013
...
* replace binary literal prefix to hexadecimal literal prefix
6 years ago
Alexander Alekhin
05f0cb16de
Merge pull request #12022 from mshabunin:fix-ie-build
6 years ago
Maksim Shabunin
a4060e15a4
dnn, IE backend: updated to match new interface
6 years ago
Alexander Alekhin
7198b9e461
Merge pull request #12019 from mshabunin:static-debug-assert
6 years ago
Alexander Alekhin
ab9b6e806c
Merge pull request #11781 from dkurt:dnn_uint8_inputs
6 years ago
Alexander Alekhin
51074b9743
Merge pull request #12007 from alalek:fix_ts_perf_test_macro
6 years ago
Dmitry Kurtaev
070393dfda
uint8 inputs for deep learning networks
6 years ago
Alexander Alekhin
f4df537e27
ts: fix PERF_TEST() macro to allow test_case name reusing
...
Example (reuse 'Transform' test case):
PERF_TEST(Transform, getPerspectiveTransform_1000) { ... }
PERF_TEST(Transform, getPerspectiveTransform_QR_1000) { ... }
6 years ago
Alexander Alekhin
905da2994a
Merge pull request #12008 from alalek:test_remove_verbose_messages
6 years ago
Alexander Alekhin
e526c4bfe4
core(test): remove verbose messages
6 years ago
Maksim Shabunin
fe806878be
Enable debug assertions for static analysis builds
6 years ago
Maksim Shabunin
a2a9a01e05
AVI container: verbose error messages
6 years ago
Alexander Alekhin
6c4f618db5
Merge pull request #11104 from asciian:reading_from_stream
6 years ago
Alexander Alekhin
f3ee07ca11
Merge pull request #11986 from alalek:build_eliminate_gcc8_warnings
6 years ago
Alexander Alekhin
7cc84ce8ab
Merge pull request #11984 from mshabunin:fix-static-1
6 years ago
Alexander Alekhin
40b8ca2eed
Merge pull request #11968 from allnes:detect_qr_code
6 years ago
Alexander Alekhin
4dcef28023
Merge pull request #11964 from mshabunin:avi-container-fixes
6 years ago
Alexander Alekhin
0a41b3df45
Merge pull request #11990 from alalek:clone_nodiscard_attribute
6 years ago
Alexander Alekhin
f086fc5b18
Merge pull request #11994 from alalek:cmake_find_package_inference_engine
6 years ago
Maksim Shabunin
c473718bc2
Check for empty Mat in compare, operator= and RNG::fill, fixed related tests
6 years ago
Maksim Shabunin
1da46fe6fb
Fixed issues found by static analysis (mostly DBZ)
6 years ago
Alexander Alekhin
5b72e83687
cmake: prefer using find_package(InferenceEngine)
6 years ago
Alexander Alekhin
78d07e841d
Merge pull request #11959 from pengli:3.4
6 years ago
Dmitry Kurtaev
f38808a39f
Add Java overloads for each default argument ( #11940 )
...
* Add Java overloads for each default argument
* Add "fisheye_" prefix for cv::fisheye:: functions and enums
6 years ago
Alexander Alekhin
540415dc5e
Merge pull request #11989 from csukuangfj:patch_2
6 years ago
Li Peng
f0cadaa6e3
enable concat layer fuse for OCL target
...
Signed-off-by: Li Peng <peng.li@intel.com>
6 years ago
Vadim Pisarevsky
f058b5fb1e
Wide univ intrinsics ( #11953 )
...
* core:OE-27 prepare universal intrinsics to expand (#11022 )
* core:OE-27 prepare universal intrinsics to expand (#11022 )
* core: Add universal intrinsics for AVX2
* updated implementation of wide univ. intrinsics; converted several OpenCV HAL functions: sqrt, invsqrt, magnitude, phase, exp to the wide universal intrinsics.
* converted log to universal intrinsics; cleaned up the code a bit; added v_lut_deinterleave intrinsics.
* core: Add universal intrinsics for AVX2
* fixed multiple compile errors
* fixed many more compile errors and hopefully some test failures
* fixed some more compile errors
* temporarily disabled IPP to debug exp & log; hopefully fixed Doxygen complains
* fixed some more compile errors
* fixed v_store(short*, v_float16&) signatures
* trying to fix the test failures on Linux
* fixed some issues found by alalek
* restored IPP optimization after the patch with AVX wide intrinsics has been properly tested
* restored IPP optimization after the patch with AVX wide intrinsics has been properly tested
6 years ago
Alexander Alekhin
481829a81b
Merge pull request #11957 from alalek:issue_11956
6 years ago
Alexander Alekhin
c9439476da
Merge pull request #11970 from dkurt:dnn_enable_tf_tests
6 years ago
Alexander Alekhin
60994389a6
Merge pull request #11985 from alalek:cmake_update_inference_engine_detection
6 years ago
Alexander Alekhin
b0ee5d9023
core: CV_NODISCARD macro with semantic of [[nodiscard]] attr
...
[[nodiscard]] is defined in C++17.
There is fallback alias for modern GCC / Clang compilers.
6 years ago
Kuang Fangjun
84f2f37680
remove a useless statement.
6 years ago
Alexander Alekhin
d5951bc033
build: eliminate GCC8 warnings
6 years ago
Alexander Alekhin
a5e8ae2183
Merge pull request #11969 from alalek:core_Matx_inv_solve_templates
6 years ago
Alexander Alekhin
1dec480974
Merge pull request #11951 from alalek:cuda_use_external_cmake_module
6 years ago