Dmitry Kurtaev [Tue, 30 Apr 2019 12:33:32 +0000 (15:33 +0300)]
StridedSlice from TensorFlow
Alexander Alekhin [Tue, 21 May 2019 18:30:02 +0000 (18:30 +0000)]
Merge pull request #14586 from dianlujitao:master
Alexander Alekhin [Mon, 20 May 2019 18:16:52 +0000 (18:16 +0000)]
Merge pull request #14362 from catree:feat_ippe
Rostislav Vasilikhin [Mon, 20 May 2019 18:10:21 +0000 (21:10 +0300)]
Merge pull request #14106 from savuor:lab_wide
Lab, Luv and XYZ conversions rewritten to wide intrinsics (#14106)
* rgb2xyz<float> re-vectorized
* rgb2xyz_i vectorized for ushort and uchar
* xyz2rgb<float> vectorized
* xyz2rgb_i vectorized for both uchar and ushort
* intermediate conversions (int->float) rewritten
* packed rgb2luv rewritten
* (some) float conversions rewritten
* burnt volatile int _3 and similar
* RGB2Lab_b rewritten
* tests: logging made better
* RGB2Lab_f (LRGB path) rewritten
* Lab2RGBfloat rewritten
* Lab2RGBinteger and Lab2RGB_b rewritten to wide universal intrinsics
* Luv2RGBinteger wide vectorized
* RGB2Lab_b fixed: v_sub_wrap instead of saturated sub
* warnings fixed
* trying to fix compilation on older compilers
* using 16x8 registers for 8-element dot product
* cleanup added
* splineInterpolate: loop unrolled, perf fix for f32x4
* Lab2RGBfloat: grab 2x more data to process on f32x4
* nrepeats for Luv2RGBfloat, +20% perf
* minor
* nrepeats to RGB2Lab_f
* Lab2RGBinteger: no tab for linear BGR
* nrepeats for RGB2Luvfloat
* Luv2RGBinteger: no tab for linear RGB
* +10% more to perf of Luv2RGBfloat
* nrepeats for 256-simd for Lab2RGBfloat
* less warnings
* BOM removed
* CV_SIMD_WIDTH used for lanes number checking
* trilinearPackedInterpolate: 128-bit specialization added
* fix build; no vx_cleanup(), instrumentation instead
Sergiu Deitsch [Mon, 20 May 2019 18:05:42 +0000 (20:05 +0200)]
Merge pull request #13337 from sergiud:eigen-cross-compile
* added support for Eigen cross-compilation
* cmake: fix Eigen detection
dianlujitao [Mon, 20 May 2019 07:46:09 +0000 (15:46 +0800)]
Fix LogSoftmax for ONNX
Fix wrong indentation as well while at it
catree [Thu, 18 Apr 2019 17:07:19 +0000 (19:07 +0200)]
Add SOLVEPNP_IPPE for planar pose estimation. Add solvePnPGeneric function that returns all the pose solutions and the reprojection errors.
Alexander Alekhin [Sat, 18 May 2019 16:19:34 +0000 (16:19 +0000)]
Merge pull request #14524 from kohei-us:onnx-load-binary-blob
Alexander Alekhin [Fri, 17 May 2019 17:03:53 +0000 (17:03 +0000)]
Merge pull request #14445 from l-bat:batchnorm3d
Alexander Alekhin [Fri, 17 May 2019 04:19:05 +0000 (04:19 +0000)]
Merge pull request #14574 from catree:fix_norm_type_typo
catree [Thu, 16 May 2019 17:22:41 +0000 (19:22 +0200)]
Fix typo in NormTypes documentation.
Kohei Yoshida [Mon, 6 May 2019 20:04:19 +0000 (16:04 -0400)]
Add support for loading ONNX model from in-memory buffer.
Alexander Alekhin [Thu, 16 May 2019 14:50:20 +0000 (14:50 +0000)]
Merge pull request #14463 from thangktran:thangktran/fix-imgproc-intersectConvexConvex
Alexander Alekhin [Thu, 16 May 2019 11:03:44 +0000 (11:03 +0000)]
Merge pull request #14517 from FadyEssam:remove_redundant_imports
Alexander Alekhin [Wed, 15 May 2019 17:58:10 +0000 (17:58 +0000)]
Merge pull request #14232 from terfendail:popcount_rework
Vitaly Tuzov [Tue, 14 May 2019 15:48:36 +0000 (18:48 +0300)]
Updated AVX2 implementation of v_popcount for u8.
Alexander Alekhin [Wed, 15 May 2019 16:21:31 +0000 (16:21 +0000)]
Merge pull request #14569 from alalek:fixup_14558
Alexander Alekhin [Wed, 15 May 2019 16:21:07 +0000 (16:21 +0000)]
Merge pull request #14561 from alalek:fix_ctors_with_uninitialized_vars
Daniel Ingram [Wed, 15 May 2019 15:41:43 +0000 (11:41 -0400)]
Merge pull request #14559 from daniel-s-ingram:master
* Fix typo: 'divisble' -> 'divisible'
* Fix typo: 'One of arguments' -> 'One of the arguments'
Alexander Alekhin [Tue, 14 May 2019 16:20:17 +0000 (19:20 +0300)]
cmake(samples): use LINK_PRIVATE in target_link_libraries
Alexander Alekhin [Wed, 15 May 2019 15:17:05 +0000 (15:17 +0000)]
Merge pull request #14552 from dkurt:fixed_detections_out_blob
Alexander Alekhin [Wed, 15 May 2019 12:58:23 +0000 (12:58 +0000)]
Merge pull request #14505 from alalek:android_fix_14477
mehlukas [Wed, 15 May 2019 12:13:57 +0000 (14:13 +0200)]
Merge pull request #14314 from mehlukas:3.4-opticalflow
Extend optical flow tutorial (#14314)
* extend python optical flow tutorial with cpp example code and add it to general tutorial directory
* remove unused parameters, fix comparison between signed and unsigned int
* fix hsv range problem
* switch to samples::findFile for sample file location
* switch to command line parameter for path
* remove old tutorial as in 14393
* minor fixes
mehlukas [Wed, 15 May 2019 10:34:20 +0000 (12:34 +0200)]
Merge pull request #14393 from mehlukas:3.4-meanshift
Extend meanshift tutorial (#14393)
* copy original tutorial and python code
* add cpp code, fix python code
* add camshift cpp code, fix bug in meanshift code
* add description to ToC page
* fix shadowing previous local declaration
* fix grammar: with -> within
* docs: remove content of old py_meanshift tutorial, add link
* docs: replace meanshift tutorial subpage in Python tutorials
* switch to ref to fix wrong breadcrumb navigation
* switch to cmdline for path as in #14314
* Apply suggestions from code review
* order programming languages alphabetically
Alexander Alekhin [Tue, 7 May 2019 22:37:25 +0000 (22:37 +0000)]
android: fix JavaCamera2View UV plane handling
Alexander Alekhin [Tue, 14 May 2019 19:15:13 +0000 (19:15 +0000)]
calib3d: fix uninitialized fields in ctors
Alexander Alekhin [Tue, 14 May 2019 19:02:23 +0000 (19:02 +0000)]
Merge pull request #14558 from alalek:cmake_samples_threading_3.4
Alexander Alekhin [Tue, 14 May 2019 19:01:43 +0000 (19:01 +0000)]
Merge pull request #14516 from dkurt:dnn_async_samples
Dmitry Kurtaev [Tue, 14 May 2019 14:43:48 +0000 (17:43 +0300)]
Asynchronous C++ sample
Vitaly Tuzov [Wed, 3 Apr 2019 08:45:38 +0000 (11:45 +0300)]
Updated v_popcount description, reference implementation and test.
Vitaly Tuzov [Mon, 1 Apr 2019 16:27:50 +0000 (19:27 +0300)]
Reworked v_popcount implementation to provide number of bits in a single lane
Alexander Alekhin [Tue, 14 May 2019 12:46:44 +0000 (15:46 +0300)]
cmake: enable threading in samples
- moved code into separate file due issue with handling of CMake policies
Liubov Batanina [Tue, 14 May 2019 09:35:41 +0000 (12:35 +0300)]
Support OCV backend
Dmitry Kurtaev [Tue, 14 May 2019 09:08:21 +0000 (12:08 +0300)]
Fixed DetectionOutput output blob shape
Liubov Batanina [Mon, 29 Apr 2019 07:29:34 +0000 (10:29 +0300)]
Add BatchNorm3d layer
Dmitry Kurtaev [Wed, 8 May 2019 12:27:22 +0000 (15:27 +0300)]
Async mode for dnn's object detection sample
Fady Essam [Wed, 8 May 2019 22:01:57 +0000 (00:01 +0200)]
remove unnecessary imports in knn tutorials
Alexander Alekhin [Tue, 7 May 2019 15:49:54 +0000 (15:49 +0000)]
Merge pull request #14501 from LaurentBerger:MatchLayer_text_graph_ssd
Alexander Alekhin [Tue, 7 May 2019 14:48:49 +0000 (14:48 +0000)]
Merge pull request #14460 from dkurt:dnn_tf_no_extra_clone
Alexander Alekhin [Tue, 7 May 2019 14:44:33 +0000 (14:44 +0000)]
Merge pull request #14500 from mshabunin:backport-avfoundation
Alexander Alekhin [Tue, 7 May 2019 14:25:02 +0000 (14:25 +0000)]
Merge pull request #14486 from alalek:cmake_dispatch_all
LaurentBerger [Tue, 7 May 2019 14:11:08 +0000 (16:11 +0200)]
extends regex matching for conv group of layers
Alexander Alekhin [Tue, 7 May 2019 14:13:06 +0000 (14:13 +0000)]
Merge pull request #14491 from mshabunin:add-clang-hardening
Maksim Shabunin [Fri, 29 Mar 2019 14:52:22 +0000 (17:52 +0300)]
Backported AVFoundation fixes from master branch
Maksim Shabunin [Mon, 6 May 2019 16:23:27 +0000 (19:23 +0300)]
Added support for Clang build hardening (including Apple)
Alexander Alekhin [Mon, 6 May 2019 19:16:26 +0000 (19:16 +0000)]
Merge pull request #14489 from dkurt:fix_14464
Dmitry Kurtaev [Mon, 6 May 2019 06:13:47 +0000 (09:13 +0300)]
Modify paddings computation for SAME pad mode
Alexander Alekhin [Sun, 5 May 2019 11:51:53 +0000 (11:51 +0000)]
Merge pull request #14484 from dkurt:dnn_ie_fix_async_u8
Alexander Alekhin [Sat, 4 May 2019 20:49:25 +0000 (20:49 +0000)]
cmake: support CPU_DISPATCH=ALL, fix misused CPU_DISPATCH
- CPU_DISPATCH_FINAL should be used for filtering
Sayed Adel [Sun, 5 May 2019 11:19:49 +0000 (13:19 +0200)]
Merge pull request #14007 from seiko2plus:core_avx512_infa
* core: improve AVX512 infrastructure by adding more CPU features groups
* cmake: use groups for AVX512 optimization flags
* core: remove gap in CPU flags enumeration
* cmake: restore default CPU_DISPATCH
Dmitry Kurtaev [Sun, 5 May 2019 09:49:38 +0000 (12:49 +0300)]
Fix uint8 input data for Async mode of dnn
Alexander Alekhin [Thu, 2 May 2019 20:44:58 +0000 (20:44 +0000)]
Merge pull request #14431 from catree:feat_solvePnPRefine
Alexander Alekhin [Wed, 1 May 2019 22:00:02 +0000 (22:00 +0000)]
Merge pull request #14465 from unrandomness:master
seungju [Wed, 1 May 2019 11:20:30 +0000 (13:20 +0200)]
fix a typo in md file
fix a typo in ml_intro.md, tress -> trees
Thang Tran [Tue, 30 Apr 2019 13:43:31 +0000 (15:43 +0200)]
imgproc: fixed bug from intersectConvexConvex
Added checks for all of vertices from each contour instead of checking
only for the first vertex.
Alexander Alekhin [Tue, 30 Apr 2019 19:35:00 +0000 (19:35 +0000)]
Merge pull request #14368 from dkurt:dnn_ie_tests
Alexander Alekhin [Tue, 30 Apr 2019 16:49:33 +0000 (16:49 +0000)]
Merge pull request #14457 from alalek:dnn_fix_msvc_build
Alexander Alekhin [Tue, 30 Apr 2019 16:24:32 +0000 (16:24 +0000)]
Merge pull request #14454 from dkurt:dnn_tf_subgraph_fusion
Dmitry Kurtaev [Tue, 30 Apr 2019 16:18:41 +0000 (19:18 +0300)]
Remove extra weights cloning from TensorFlow importer
Alexander Alekhin [Tue, 30 Apr 2019 16:15:46 +0000 (16:15 +0000)]
Merge pull request #14452 from alalek:issue_14432
Lubov Batanina [Tue, 30 Apr 2019 14:08:17 +0000 (17:08 +0300)]
Merge pull request #14301 from l-bat:conv3d
Support Convolution3D layer on IE backend (#14301)
* Add Convolution3D layer
* Disable CXX11
* Fixed tests
* Add Pooling3D layer
* Merge Conv2d with Conv3d and Pool2d with Pool3d layers
* Split pads
* Add Deconvolution layer
* Refactoring
* Deduplication
* Refactoring
* Add utils for Convolution and Pooling layers
Alexander Alekhin [Tue, 30 Apr 2019 14:01:13 +0000 (14:01 +0000)]
Merge pull request #14451 from alalek:fix_perf_calibation
Alexander Alekhin [Tue, 30 Apr 2019 14:00:36 +0000 (14:00 +0000)]
Merge pull request #14450 from alalek:ts_hide_zero_memory_message
catree [Fri, 26 Apr 2019 17:43:42 +0000 (19:43 +0200)]
Add solvePnPRefineLM to refine a pose according to a Levenberg-Marquardt iterative minimization process. Add solvePnPRefineVVS to refine a pose using a virtual visual servoing scheme.
Alexander Alekhin [Mon, 29 Apr 2019 16:03:10 +0000 (19:03 +0300)]
build: avoid MSVC ICE
Alexander Alekhin [Tue, 30 Apr 2019 10:41:33 +0000 (10:41 +0000)]
Merge pull request #14446 from mshabunin:old-v4l
Dmitry Kurtaev [Mon, 29 Apr 2019 15:55:09 +0000 (18:55 +0300)]
Refactored TensorFlow subgraphs fusion
Alexander Alekhin [Mon, 29 Apr 2019 21:11:27 +0000 (21:11 +0000)]
imgproc: fix RemoveOverlaps() with empty input vector
Alexander Alekhin [Mon, 29 Apr 2019 19:05:44 +0000 (19:05 +0000)]
ts: fix perf calibation
properly handle "check" mode with:
"--perf_min_samples=1 --perf_force_samples=1"
Alexander Alekhin [Mon, 29 Apr 2019 18:24:54 +0000 (18:24 +0000)]
ts: silence zero memory usage messages
Alexander Alekhin [Mon, 29 Apr 2019 18:21:22 +0000 (18:21 +0000)]
Merge pull request #14443 from dkurt:fix_14435
Maksim Shabunin [Mon, 29 Apr 2019 15:14:58 +0000 (18:14 +0300)]
Support very old V4L
ostarling [Mon, 29 Apr 2019 14:12:04 +0000 (15:12 +0100)]
Merge pull request #14411 from ostarling:3.4_fix_for_14242
* Fix for Homogenous precision #14242:
- moved scale computation to an inline function
- use std::numeric_limits<float>::epsilon() instead of != 0.0
* Fix for Homogenous precision #14242:
- fixed warnings for type conversion
* Fix for Homogenous precision #14242:
- use float epsilon() for truncation of doubles
Alexander Alekhin [Mon, 29 Apr 2019 10:54:34 +0000 (10:54 +0000)]
Merge pull request #14342 from Victorlouisdg:bugfix-JavaCamera2View-green
Dmitry Kurtaev [Mon, 29 Apr 2019 05:12:13 +0000 (08:12 +0300)]
Add an assertion for Async request status
Alexander Alekhin [Sat, 27 Apr 2019 21:48:56 +0000 (21:48 +0000)]
Merge pull request #14407 from dkurt:dnn_ie_fix_batch_detection
Alexander Alekhin [Sat, 27 Apr 2019 18:01:29 +0000 (18:01 +0000)]
Merge pull request #14434 from seiko2plus:vsx_fix_reduce_sad
Sayed Adel [Sat, 27 Apr 2019 00:01:24 +0000 (02:01 +0200)]
core:vsx fix sum of v_reduce_sad
Alexander Alekhin [Fri, 26 Apr 2019 20:18:58 +0000 (20:18 +0000)]
Merge pull request #14430 from alalek:cmake_fix_include_pkgconfig_3.4
Alexander Alekhin [Fri, 26 Apr 2019 16:13:52 +0000 (16:13 +0000)]
Merge pull request #14394 from alalek:build_support_memory_sanitizers
Alexander Alekhin [Fri, 26 Apr 2019 15:34:01 +0000 (15:34 +0000)]
Merge pull request #14385 from terfendail:intrin_sad
Alexander Alekhin [Fri, 26 Apr 2019 12:13:16 +0000 (15:13 +0300)]
cmake: fix pkg-config handling
backporting commit
c9f3f4d1d32ec065eb6431c7fbe78466e08a2fbe
Alexander Alekhin [Thu, 25 Apr 2019 18:45:14 +0000 (18:45 +0000)]
Merge pull request #14410 from adamrankin:master
Dmitry Kurtaev [Fri, 19 Apr 2019 11:54:08 +0000 (14:54 +0300)]
Check if Inference Engine networks are fully supported by backend
Adam Rankin [Wed, 24 Apr 2019 18:36:29 +0000 (14:36 -0400)]
BUG: Qt5 components not correctly detected if only Qt5_DIR is provided, when this is supported by Qt CMake system.
Fixed by updating Qt5 find_package call to use modern CMake syntax
Alexander Alekhin [Wed, 24 Apr 2019 14:30:09 +0000 (14:30 +0000)]
Merge pull request #14408 from l-bat:onnx_deconv
Vitaly Tuzov [Mon, 22 Apr 2019 08:19:08 +0000 (11:19 +0300)]
Fixed v_reduce_sad intrinsics implementation and added tests
Alexander Alekhin [Wed, 24 Apr 2019 11:44:05 +0000 (11:44 +0000)]
Merge pull request #14406 from thangktran:thangktran/java-wrapper-for-find4QuadCornerSubpix
Liubov Batanina [Wed, 24 Apr 2019 11:18:14 +0000 (14:18 +0300)]
Fix ONNX deconvolution
Dmitry Kurtaev [Wed, 24 Apr 2019 09:08:49 +0000 (12:08 +0300)]
Fix batching in DetectionOutput layer
Thang Tran [Tue, 23 Apr 2019 14:53:17 +0000 (16:53 +0200)]
calib3d: add find4QuadCornerSubpix java wrapper
Fixes: https://github.com/opencv/opencv/issues/14169
Sheel-Patel [Tue, 23 Apr 2019 22:45:27 +0000 (15:45 -0700)]
Merge pull request #14122 from Sheel-Patel:patch-1
Grammatical errors for help() in detect_mser.cpp (#14122)
* Grammatical errors for help() statement
Corrected spelling of "synthetic" and added grammatical clarification for keys to press to change view or use mouse.
* Adjustment of superfluous spaces
Alexander Alekhin [Tue, 23 Apr 2019 22:38:07 +0000 (22:38 +0000)]
Merge pull request #14260 from allanrodriguez:sample-digits-cpp
Alexander Alekhin [Tue, 23 Apr 2019 14:46:05 +0000 (14:46 +0000)]
Merge pull request #14395 from alalek:ts_catch_missing_files
Alexander Alekhin [Sat, 13 Apr 2019 15:46:38 +0000 (15:46 +0000)]
ts: +ENV{OPENCV_TEST_REQUIRE_DATA}
similar to '--test_require_data' parameter
Alexander Alekhin [Thu, 18 Apr 2019 18:50:52 +0000 (18:50 +0000)]
build: +OPENCV_ENABLE_MEMORY_SANITIZER flag
Alexander Alekhin [Mon, 22 Apr 2019 15:55:19 +0000 (15:55 +0000)]
Merge pull request #14390 from dkurt:dnn_onnx_const_reshape
Alexander Alekhin [Mon, 22 Apr 2019 15:54:08 +0000 (15:54 +0000)]
Merge pull request #14389 from alalek:cmake_fix_pch_build_with_vtk
Alexander Alekhin [Mon, 22 Apr 2019 15:52:53 +0000 (15:52 +0000)]
Merge pull request #14384 from terfendail:fp16_depint
Alexander Alekhin [Mon, 22 Apr 2019 15:52:10 +0000 (15:52 +0000)]
Merge pull request #14382 from alalek:backport_14373