Roman Donchenko [Mon, 20 Jan 2014 11:10:19 +0000 (15:10 +0400)]
Merge remote-tracking branch 'origin/2.4' into merge-2.4
Conflicts:
modules/ocl/src/cl_runtime/cl_runtime.cpp
modules/ocl/src/cl_runtime/clamdblas_runtime.cpp
modules/ocl/src/cl_runtime/clamdfft_runtime.cpp
modules/ocl/src/cl_runtime/generator/template/clamdblas_runtime.cpp.in
modules/ocl/src/cl_runtime/generator/template/clamdfft_runtime.cpp.in
Roman Donchenko [Mon, 20 Jan 2014 08:20:21 +0000 (12:20 +0400)]
Merge pull request #2160 from SpecLad:norm-assert
Roman Donchenko [Mon, 20 Jan 2014 08:06:43 +0000 (12:06 +0400)]
Merge pull request #2174 from Nerei:yet_another_fix_for_pr2172
Anatoly Baksheev [Sun, 19 Jan 2014 14:32:22 +0000 (18:32 +0400)]
horisontal mwhell support
Andrey Pavlenko [Sun, 19 Jan 2014 07:44:36 +0000 (11:44 +0400)]
Merge pull request #2172 from Nerei:compilation_and_warnings
Anatoly Baksheev [Sun, 19 Jan 2014 00:07:24 +0000 (04:07 +0400)]
warnings
Anatoly Baksheev [Sun, 19 Jan 2014 00:07:17 +0000 (04:07 +0400)]
warnings and compilation with installed Windows 8.1 SDK
Roman Donchenko [Fri, 17 Jan 2014 15:00:19 +0000 (19:00 +0400)]
Merge pull request #2157 from k0da:master
Roman Donchenko [Fri, 17 Jan 2014 14:25:28 +0000 (18:25 +0400)]
Removed some duplicate assertions.
Roman Donchenko [Fri, 17 Jan 2014 14:23:53 +0000 (18:23 +0400)]
Merge pull request #2159 from SpecLad:1xN
Roman Donchenko [Fri, 17 Jan 2014 12:28:29 +0000 (16:28 +0400)]
Merge pull request #2146 from SpecLad:merge-2.4
Roman Donchenko [Fri, 17 Jan 2014 10:58:27 +0000 (14:58 +0400)]
Merge pull request #2122 from adishavit:feature-HandleMouseWheel
Roman Donchenko [Fri, 17 Jan 2014 10:57:57 +0000 (14:57 +0400)]
Merge pull request #2140 from Daniil-Osokin:fix_saving_untrained_svm_model
Andrey Pavlenko [Fri, 17 Jan 2014 10:52:17 +0000 (14:52 +0400)]
Merge pull request #2152 from ilya-lavrenov:tapi_canny
Roman Donchenko [Fri, 17 Jan 2014 10:49:42 +0000 (14:49 +0400)]
Fixed an overly-narrow assertion in cv::norm.
size() requires that the matrix is two-dimensional, and norm()
works on higher dimensions.
Roman Donchenko [Fri, 17 Jan 2014 10:18:31 +0000 (14:18 +0400)]
Added a test for matrix-to-vector copy and convert.
Roman Donchenko [Fri, 17 Jan 2014 10:16:22 +0000 (14:16 +0400)]
Removed an unnecessary workaround for matrix-to-vector copyTo.
Roman Donchenko [Fri, 17 Jan 2014 10:13:21 +0000 (14:13 +0400)]
Re-fix bug #3319 with less side effects.
Roman Donchenko [Fri, 17 Jan 2014 09:02:35 +0000 (13:02 +0400)]
Revert "fixed bug #3319"
See 092f916 for explanation.
This reverts commit
4f9c081dc313f8fdfee3f0a4572779ae13e27e40.
Roman Donchenko [Fri, 17 Jan 2014 08:51:52 +0000 (12:51 +0400)]
Revert 4f9c081
That commit introduces problems, as it breaks certain use cases of
OpenCV functions; for example, convertTo of an Nx1 matrix to an
std::vector.
Since vectors can't store separate width and height values, OpenCV
considers them to always be 1xN. So even though the vector is created with
.create(N, 1), the Mat passed to getContinousSize has dimensions 1xN,
and the size comparison fails, even though the operation itself is safe.
This is a use case we probably don't want to break, at the very least
for backwards compatibility. So I'm reverting the commit. This will also
unfix bug #3319; I'll submit a less intrusive solution as a PR to 2.4, which
will also revert 4f9c081 there.
Ilya Lavrenov [Tue, 14 Jan 2014 10:10:24 +0000 (14:10 +0400)]
ported cv::Canny to T-API
Andrey Pavlenko [Fri, 17 Jan 2014 06:43:39 +0000 (10:43 +0400)]
Merge pull request #2143 from Daniil-Osokin:fix_docs_cvt_color_alpha_channel
Dinar Valeev [Thu, 16 Jan 2014 20:53:49 +0000 (21:53 +0100)]
Use __vector instead of vector as suggests Eigen
This fixes build on PowerPC where Eigen unsets vector, bool and pixel
Signed-off-by: Dinar Valeev <dvaleev@suse.com>
Daniil Osokin [Mon, 13 Jan 2014 10:20:42 +0000 (14:20 +0400)]
Fixed cvtColor alpha channel docs
Adi Shavit [Thu, 16 Jan 2014 14:30:54 +0000 (16:30 +0200)]
Doc fix.
Roman Donchenko [Thu, 16 Jan 2014 14:03:21 +0000 (18:03 +0400)]
Merge pull request #2141 from ilya-lavrenov:perf_warp
Roman Donchenko [Thu, 16 Jan 2014 13:58:26 +0000 (17:58 +0400)]
Revert "replaced sprintf with cv::format"
Fixing build breakage.
This reverts commit
b83eff7ecf0a3a8a9d706168150d569c94f0b71e.
Roman Donchenko [Thu, 16 Jan 2014 12:44:24 +0000 (16:44 +0400)]
Merge pull request #2151 from KonstantinMatskevich:testdata_path_calib3d
Konstantin Matskevich [Thu, 16 Jan 2014 12:18:02 +0000 (16:18 +0400)]
replaced sprintf with cv::format
Adi Shavit [Thu, 16 Jan 2014 10:51:14 +0000 (12:51 +0200)]
Update docs.
Adi Shavit [Thu, 16 Jan 2014 09:25:57 +0000 (11:25 +0200)]
Updated docs.
Adi Shavit [Thu, 16 Jan 2014 09:09:25 +0000 (11:09 +0200)]
Small fixes: typo, spacing and using ::ScreenToClient() instead of ::GetWindowRect()
Roman Donchenko [Thu, 16 Jan 2014 08:37:02 +0000 (12:37 +0400)]
Merge pull request #2127 from apavlenko:perf_cascades
Ilya Lavrenov [Mon, 13 Jan 2014 15:46:00 +0000 (19:46 +0400)]
added perf test for cv::Canny
Konstantin Matskevich [Wed, 15 Jan 2014 11:08:09 +0000 (15:08 +0400)]
changed testdata path for calib3d
Andrey Pavlenko [Wed, 15 Jan 2014 09:45:28 +0000 (13:45 +0400)]
Merge pull request #2150 from ilya-lavrenov:tapi_cvtcolor
Adi Shavit [Sun, 12 Jan 2014 07:33:08 +0000 (09:33 +0200)]
[HighGUI] Updated mouse wheel delta to reside within the 'flags' variable. Updated C++ API.
Adi Shavit [Tue, 7 Jan 2014 19:17:57 +0000 (21:17 +0200)]
Added support for mouse-wheel events on Windows.
To be used in the mouse callback like this:
if (CV_EVENT_MOUSEWHEEL == CV_GET_MOUSEWHEEL_EVENT(event))
{
int delta= CV_GET_WHEEL_DELTA(event);
// use delta...
}
Adi Shavit [Sun, 5 Jan 2014 15:21:59 +0000 (17:21 +0200)]
Small fix for extracting mouse coordinates on Windows, in a way that will always work with multiple monitors.
This is the way recommended by Microsoft.
Andrey Pavlenko [Tue, 14 Jan 2014 19:15:50 +0000 (23:15 +0400)]
adding old cascade
Andrey Pavlenko [Tue, 14 Jan 2014 13:50:00 +0000 (17:50 +0400)]
fixing compilation if `WITH_OPENCL=OFF`
Ilya Lavrenov [Tue, 14 Jan 2014 12:15:42 +0000 (16:15 +0400)]
fixed cv::cvtColor
Roman Donchenko [Tue, 14 Jan 2014 07:55:28 +0000 (11:55 +0400)]
Merge pull request #2145 from andreasBihlmaier:2.4
Roman Donchenko [Mon, 13 Jan 2014 15:28:43 +0000 (19:28 +0400)]
Merge remote-tracking branch 'origin/2.4' into merge-2.4
Conflicts:
modules/contrib/src/retina.cpp
modules/core/include/opencv2/core/mat.hpp
modules/core/src/algorithm.cpp
modules/core/src/arithm.cpp
modules/features2d/src/features2d_init.cpp
modules/gpu/include/opencv2/gpu/gpu.hpp
modules/gpu/perf/perf_imgproc.cpp
modules/imgproc/src/generalized_hough.cpp
modules/ocl/include/opencv2/ocl/ocl.hpp
modules/video/src/tvl1flow.cpp
modules/video/src/video_init.cpp
Andrey Pavlenko [Tue, 14 Jan 2014 07:34:02 +0000 (11:34 +0400)]
Merge pull request #2147 from ilya-lavrenov:tapi_sqrt
Ilya Lavrenov [Mon, 13 Jan 2014 15:58:27 +0000 (19:58 +0400)]
deleted extra arg in case of power=0.5
Roman Donchenko [Mon, 13 Jan 2014 15:28:09 +0000 (19:28 +0400)]
Merge pull request #2133 from apavlenko:2.4-perf_haar
ahb [Mon, 13 Jan 2014 15:09:42 +0000 (16:09 +0100)]
Fix the following error for ocl::getOpenCLPlatforms() on Ubuntu 12.04 with gcc 4.8
OpenCV Error: Unknown error code -6 (OpenCL function is not available: [clGetPlatformIDs]) in opencl_check_fn, file /home/ahb/software/opencv/modules/ocl/src/cl_runtime/cl_runtime.cpp, line 83
The issue results from modules/ocl/src/cl_runtime/cl_runtime.cpp checking for
"linux" instead of "__linux__" (cp. http://sourceforge.net/p/predef/wiki/OperatingSystems/)
Adjust all other occurrences of "defined(linux)" as well.
Ilya Lavrenov [Mon, 13 Jan 2014 14:51:49 +0000 (18:51 +0400)]
added perf test for cv::sqrBoxFilter
Ilya Lavrenov [Mon, 13 Jan 2014 14:36:25 +0000 (18:36 +0400)]
fixed cv::integral perf test
Roman Donchenko [Mon, 13 Jan 2014 14:16:59 +0000 (18:16 +0400)]
Merge pull request #2136 from SpecLad:python-ver
Andrey Pavlenko [Mon, 13 Jan 2014 14:12:30 +0000 (18:12 +0400)]
adding `finish()` to flush CL queue, renaming the test to match 'master' branch
Ilya Lavrenov [Mon, 13 Jan 2014 13:50:14 +0000 (17:50 +0400)]
added perf test for cv::Moments
Andrey Pavlenko [Mon, 13 Jan 2014 12:58:36 +0000 (16:58 +0400)]
switching to `CL_PERF_TEST_P`, adding `safeFinish()` to flush CL queue
Roman Donchenko [Mon, 13 Jan 2014 12:33:15 +0000 (16:33 +0400)]
Merge pull request #2137 from ilya-lavrenov:gitignore
Roman Donchenko [Mon, 13 Jan 2014 12:32:41 +0000 (16:32 +0400)]
Merge pull request #2138 from alekcac:python_tutorial_fix
Roman Donchenko [Mon, 13 Jan 2014 12:30:33 +0000 (16:30 +0400)]
Merge pull request #2121 from ilya-lavrenov:tapi_perf
Roman Donchenko [Mon, 13 Jan 2014 12:26:02 +0000 (16:26 +0400)]
Merge pull request #2108 from pemmanuelviel:flannMemoryLeak
Ilya Lavrenov [Mon, 13 Jan 2014 11:59:24 +0000 (15:59 +0400)]
added perf tests for cv::medianBlur
Ilya Lavrenov [Mon, 13 Jan 2014 11:43:09 +0000 (15:43 +0400)]
added perf tests for cv::morphologyEx
Ilya Lavrenov [Mon, 13 Jan 2014 11:30:35 +0000 (15:30 +0400)]
added perf tests for cv::dilate
Ilya Lavrenov [Mon, 13 Jan 2014 11:26:50 +0000 (15:26 +0400)]
added perf tests for filters
Ilya Lavrenov [Mon, 13 Jan 2014 11:01:52 +0000 (15:01 +0400)]
added perf tests to some imgproc functions
Ilya Lavrenov [Mon, 13 Jan 2014 10:14:22 +0000 (14:14 +0400)]
added perf test for cv::cvtColor, pyr operations
Ilya Lavrenov [Mon, 13 Jan 2014 10:06:15 +0000 (14:06 +0400)]
added perf tests for cv::blendLinear
Daniil Osokin [Mon, 13 Jan 2014 07:41:54 +0000 (11:41 +0400)]
Added throwing exception when saving untrained SVM model
Ilya Lavrenov [Mon, 13 Jan 2014 09:09:58 +0000 (13:09 +0400)]
added perf tests for T-API warp operations
Andrey Pavlenko [Mon, 13 Jan 2014 07:20:17 +0000 (11:20 +0400)]
refactoring the test as it should be in 2.4
Andrey Pavlenko [Sat, 11 Jan 2014 13:15:21 +0000 (17:15 +0400)]
Merge pull request #2135 from alalek:ocl_runtime_cleanup_2
Andrey Pavlenko [Sat, 11 Jan 2014 12:39:21 +0000 (16:39 +0400)]
Merge pull request #2112 from ilya-lavrenov:tapi_stitching
Alexander Shishkov [Sat, 11 Jan 2014 12:35:41 +0000 (16:35 +0400)]
changed code in python tutorial, these functions don’t return image
Ilya Lavrenov [Fri, 10 Jan 2014 14:59:06 +0000 (18:59 +0400)]
updated .gitignore
Ilya Lavrenov [Tue, 7 Jan 2014 16:32:22 +0000 (20:32 +0400)]
added NORM_L2SQR type to cv::norm
Ilya Lavrenov [Tue, 7 Jan 2014 16:17:45 +0000 (20:17 +0400)]
added cv::PSNR performance test
Ilya Lavrenov [Tue, 7 Jan 2014 11:08:48 +0000 (15:08 +0400)]
added some performance tests
Ilya Lavrenov [Sun, 5 Jan 2014 20:12:13 +0000 (00:12 +0400)]
added mask support to cv::norm, cv::meanStdDev
Roman Donchenko [Fri, 10 Jan 2014 14:40:47 +0000 (18:40 +0400)]
Don't use PYTHON_VERSION_STRING when searching for Python libraries
It may be an arbitrary string, and, for example, in Ubuntu 13.10
it's set to "2.7.5+", which breaks the find script.
Ilya Lavrenov [Thu, 9 Jan 2014 13:00:08 +0000 (17:00 +0400)]
updated docs according to the last changes
Ilya Lavrenov [Thu, 9 Jan 2014 11:21:07 +0000 (15:21 +0400)]
replaced Mat by Input/Output arrays
Ilya Lavrenov [Wed, 1 Jan 2014 19:46:19 +0000 (23:46 +0400)]
added OpenCL accelerated warpers
Roman Donchenko [Fri, 10 Jan 2014 14:12:08 +0000 (18:12 +0400)]
Merge pull request #2105 from ilya-lavrenov:norm
Roman Donchenko [Fri, 10 Jan 2014 07:44:45 +0000 (11:44 +0400)]
Merge pull request #2132 from ComFreek:patch-2
Alexander Alekhin [Thu, 9 Jan 2014 15:07:39 +0000 (19:07 +0400)]
core/ocl: runtime, remove unused declarations
Andrey Pavlenko [Thu, 9 Jan 2014 20:14:48 +0000 (00:14 +0400)]
'master'-like Haar perf test
Andrey Pavlenko [Thu, 9 Jan 2014 20:08:15 +0000 (00:08 +0400)]
adding Haar & LBP cascades perf test using UMat, removing old incomplete test
ComFreek [Thu, 9 Jan 2014 16:24:20 +0000 (17:24 +0100)]
Corrected package name in tutorial
See also #2101
Ilya Lavrenov [Thu, 9 Jan 2014 13:32:13 +0000 (17:32 +0400)]
fixed case with zero mask
Andrey Pavlenko [Thu, 9 Jan 2014 13:08:48 +0000 (17:08 +0400)]
Merge pull request #2128 from alalek:ocl_cleanup_runtime
Roman Donchenko [Thu, 9 Jan 2014 13:04:03 +0000 (17:04 +0400)]
Merge pull request #2129 from ilya-lavrenov:mix_fix
Roman Donchenko [Thu, 9 Jan 2014 12:58:29 +0000 (16:58 +0400)]
Merge pull request #2115 from nghiaho12:kmeans_sample
Roman Donchenko [Thu, 9 Jan 2014 12:21:48 +0000 (16:21 +0400)]
Merge pull request #2118 from ilya-lavrenov:semicolons
Roman Donchenko [Thu, 9 Jan 2014 10:44:06 +0000 (14:44 +0400)]
Merge pull request #2119 from d-schmidt:patch-1
Ilya Lavrenov [Thu, 9 Jan 2014 10:26:44 +0000 (14:26 +0400)]
fixed cv::mixChannels perf test
Nghia Ho [Thu, 9 Jan 2014 10:04:17 +0000 (21:04 +1100)]
Removed unecessary initialisation of Mat centers.
Roman Donchenko [Thu, 9 Jan 2014 10:00:52 +0000 (14:00 +0400)]
Merge pull request #2126 from yinghau76:master
Ilya Lavrenov [Sun, 5 Jan 2014 20:12:13 +0000 (00:12 +0400)]
added mask support to cv::norm, cv::meanStdDev
Alexander Alekhin [Thu, 9 Jan 2014 09:47:04 +0000 (13:47 +0400)]
core/ocl: cleanup unused files
Roman Donchenko [Thu, 9 Jan 2014 09:25:59 +0000 (13:25 +0400)]
Merge pull request #2106 from robbertkl:patch-2
Roman Donchenko [Thu, 9 Jan 2014 09:24:20 +0000 (13:24 +0400)]
Merge pull request #2114 from kazuki-ma:SparseMat_convertTo_typofix_24
Roman Donchenko [Thu, 9 Jan 2014 08:42:58 +0000 (12:42 +0400)]
Merge tag '3.0-ocl-tech-preview' (-s ours)