Ivan Korolev [Fri, 14 Jun 2013 04:21:42 +0000 (08:21 +0400)]
Fixed a bug #2892
Roman Donchenko [Tue, 11 Jun 2013 14:21:52 +0000 (18:21 +0400)]
Merge pull request #972 from jet47:mog2-params-bug-2168
Roman Donchenko [Tue, 11 Jun 2013 14:18:14 +0000 (18:18 +0400)]
Merge pull request #980 from SpecLad:include-config
Roman Donchenko [Tue, 11 Jun 2013 14:17:56 +0000 (18:17 +0400)]
Merge pull request #973 from pengx17:2.4_oclclahe
Roman Donchenko [Tue, 11 Jun 2013 13:35:38 +0000 (17:35 +0400)]
Merge pull request #903 from aks2:2.4
Roman Donchenko [Tue, 11 Jun 2013 07:59:31 +0000 (11:59 +0400)]
Merge pull request #968 from asmorkalov:android_na_cproj_fix
Roman Donchenko [Mon, 10 Jun 2013 13:06:34 +0000 (17:06 +0400)]
Revert "Add a variant of detectMultiScale with an argument 'weights'"
It was merged by mistake.
This reverts commit
ab6be9b7b7691967e42297aa6d3a67fb07597fd8.
Vadim Pisarevsky [Mon, 10 Jun 2013 11:22:46 +0000 (15:22 +0400)]
Merge pull request #961 from PeterMinin:detected_objects_weight
Roman Donchenko [Mon, 10 Jun 2013 11:06:31 +0000 (15:06 +0400)]
Merge pull request #971 from SpecLad:matchers-ctor
Roman Donchenko [Mon, 10 Jun 2013 11:06:14 +0000 (15:06 +0400)]
Merge pull request #970 from asmorkalov:dshow_valid_check_fix
Alexander Smorkalov [Mon, 10 Jun 2013 20:29:45 +0000 (13:29 -0700)]
Bug #3044 cap_dshow.cpp forgotten validity check fixed.
Roman Donchenko [Mon, 10 Jun 2013 11:03:31 +0000 (15:03 +0400)]
Merge pull request #965 from apavlenko:fix_java_empty_mats
Peng Xiao [Mon, 10 Jun 2013 10:37:48 +0000 (18:37 +0800)]
Add ocl CLACH implementation.
Test cases (accuracy and performance) are provided.
Vladislav Vinogradov [Mon, 10 Jun 2013 09:41:46 +0000 (13:41 +0400)]
added missing BackgroundSubtractorMOG2 parameters
Roman Donchenko [Mon, 10 Jun 2013 09:30:23 +0000 (13:30 +0400)]
Erase MatchPairsBody's copy constructor.
It's the same as the implicitly defined one, and it causes a -Wextra warning
(not initializing the base class in a copy constructor).
Alexander Smorkalov [Mon, 10 Jun 2013 07:06:28 +0000 (11:06 +0400)]
NativeActivity sample build with Eclipse CDT fixed.
Andrey Pavlenko [Sat, 8 Jun 2013 08:41:57 +0000 (12:41 +0400)]
fixing empty Mat case
Roman Donchenko [Fri, 7 Jun 2013 15:07:00 +0000 (19:07 +0400)]
Include the OpenCV config headers into every module.
This has no bearing on compilation, but it makes them show up in IDEs.
Vadim Pisarevsky [Fri, 7 Jun 2013 09:44:28 +0000 (13:44 +0400)]
Merge pull request #946 from bitwangyaoyao:2.4_samples2
Vadim Pisarevsky [Fri, 7 Jun 2013 09:44:10 +0000 (13:44 +0400)]
Merge pull request #957 from pengx17:2.4_fix_corner_detector
Roman Donchenko [Fri, 7 Jun 2013 07:29:40 +0000 (11:29 +0400)]
Merge pull request #960 from SpecLad:extra-modules
Roman Donchenko [Fri, 7 Jun 2013 07:27:45 +0000 (11:27 +0400)]
Merge pull request #959 from SpecLad:qt4-build
Peter Minin [Thu, 6 Jun 2013 15:00:55 +0000 (19:00 +0400)]
Add a variant of detectMultiScale with an argument 'weights' that
receives the number of neighbors joined into each detected object
Roman Donchenko [Thu, 6 Jun 2013 13:58:14 +0000 (17:58 +0400)]
Merge pull request #955 from SpecLad:symlink
Roman Donchenko [Thu, 6 Jun 2013 10:09:33 +0000 (14:09 +0400)]
Fix a missing header path when building with Qt 4.
Also, removing explicit include path configuration,
since QT_USE_FILE takes care of that.
peng xiao [Thu, 6 Jun 2013 03:44:35 +0000 (11:44 +0800)]
Fix a bug of cornerHarris and cornerMinEigenVal.
The bug is a buffer overrun when border type is reflect101.
It is found that gfft crashed with input of size 100x100 on Intel CPU.
Roman Donchenko [Wed, 5 Jun 2013 14:09:47 +0000 (18:09 +0400)]
Add support for adding custom OpenCV modules.
Roman Donchenko [Wed, 5 Jun 2013 13:56:35 +0000 (17:56 +0400)]
Merge pull request #953 from jet47:fix-bug-3069
Roman Donchenko [Wed, 5 Jun 2013 13:50:11 +0000 (17:50 +0400)]
Merge pull request #952 from SpecLad:jepg
Roman Donchenko [Wed, 5 Jun 2013 11:54:27 +0000 (15:54 +0400)]
Don't resolve symlinks when looking for modules.
We don't really need it, it makes the code longer, and it can lead to
inconsistent paths when OpenCV is itself inside a symlink.
Roman Donchenko [Wed, 5 Jun 2013 13:04:21 +0000 (17:04 +0400)]
Merge pull request #948 from jet47:cuda-5.5-support
Roman Donchenko [Wed, 5 Jun 2013 12:00:25 +0000 (16:00 +0400)]
Merge pull request #890 from caorong:patch-1
caorong [Thu, 16 May 2013 03:26:37 +0000 (11:26 +0800)]
fix a bug(DetectorType never change)
changed line281 -> line220
Presentation:
because line 220 give the globle var mDetectorType,and in line 230 it will be compared with mDeteorType !!! it will never be unequal ~
fix:
change mDetectorType(previous globle var) to a new local val tmpDetectorType
Vladislav Vinogradov [Wed, 5 Jun 2013 10:08:55 +0000 (14:08 +0400)]
fixed bug #3069 (infinite loop in GPU LBP Cascade detectMultiScale)
Roman Donchenko [Wed, 5 Jun 2013 09:51:11 +0000 (13:51 +0400)]
Fix typo in .gitattributes.
Roman Donchenko [Wed, 5 Jun 2013 07:50:11 +0000 (11:50 +0400)]
Merge pull request #947 from jet47:fix-gpu-arm-build
Roman Donchenko [Wed, 5 Jun 2013 07:27:08 +0000 (11:27 +0400)]
Merge pull request #941 from apavlenko:signed_char
Roman Donchenko [Tue, 4 Jun 2013 13:52:30 +0000 (17:52 +0400)]
Merge pull request #893 from jet47:gpu-arm-fixes
Roman Donchenko [Tue, 4 Jun 2013 13:50:31 +0000 (17:50 +0400)]
Merge pull request #940 from SpecLad:autolock
Vladislav Vinogradov [Tue, 4 Jun 2013 11:01:06 +0000 (15:01 +0400)]
fixed BroxOpticalFlow sanity test (increase epsilon value)
+ interpolateFrames and createOpticalFlowNeedleMap
Vladislav Vinogradov [Tue, 4 Jun 2013 10:59:47 +0000 (14:59 +0400)]
fixed BoxFilter sanity test (different rounding results)
Vladislav Vinogradov [Tue, 4 Jun 2013 09:58:45 +0000 (13:58 +0400)]
fixed BroxOpticalFlow regression test
the output of BroxOpticalFlow differs a bit in CUDA 5.5
Vladislav Vinogradov [Tue, 4 Jun 2013 09:57:35 +0000 (13:57 +0400)]
rewrite gpu/device/vec_math.hpp file
old version isn't compiled with CUDA 5.5
new version doesn't depend on functional.hpp
Vadim Pisarevsky [Tue, 4 Jun 2013 09:34:53 +0000 (13:34 +0400)]
Merge pull request #933 from pengx17:2.4_macfix_cont
Vadim Pisarevsky [Tue, 4 Jun 2013 09:34:39 +0000 (13:34 +0400)]
Merge pull request #935 from pengx17:2.4_filter2d_fix
Vadim Pisarevsky [Tue, 4 Jun 2013 09:34:25 +0000 (13:34 +0400)]
Merge pull request #936 from bitwangyaoyao:2.4_perf
Vadim Pisarevsky [Tue, 4 Jun 2013 09:34:09 +0000 (13:34 +0400)]
Merge pull request #937 from bitwangyaoyao:2.4_fixPyrLK
Vadim Pisarevsky [Tue, 4 Jun 2013 09:33:48 +0000 (13:33 +0400)]
Merge pull request #938 from pengx17:2.4_surf_sample
Vadim Pisarevsky [Tue, 4 Jun 2013 09:33:21 +0000 (13:33 +0400)]
Merge pull request #939 from pengx17:2.4_getDevice
Vladislav Vinogradov [Tue, 4 Jun 2013 08:51:36 +0000 (12:51 +0400)]
fixed gpu module build on arm platform
links with CUDA driver library only if we use video encoding/decoding
yao [Tue, 4 Jun 2013 07:59:21 +0000 (15:59 +0800)]
use GoodFeaturesToTrackDetector_OCL
peng xiao [Tue, 4 Jun 2013 07:55:33 +0000 (15:55 +0800)]
Fix a bug of gfft.
When user provided corners buffer is big enough to be copied to from
tmpCorners_, we allow the buffer to be reused other than allocate a new
cl_mem object.
yao [Tue, 4 Jun 2013 03:31:54 +0000 (11:31 +0800)]
change a test image of pyrlk
Roman Donchenko [Mon, 3 Jun 2013 12:08:23 +0000 (16:08 +0400)]
Merge pull request #943 from jet47:cuda-5.5-support
Roman Donchenko [Mon, 3 Jun 2013 12:08:06 +0000 (16:08 +0400)]
Merge pull request #944 from jet47:cmake-2.8.11-cuda-fix
Vladislav Vinogradov [Mon, 3 Jun 2013 10:41:23 +0000 (14:41 +0400)]
fixed constructors for functional objects (added __host__ modifier)
Vladislav Vinogradov [Mon, 3 Jun 2013 10:01:04 +0000 (14:01 +0400)]
disabled samples with driver api
Vladislav Vinogradov [Mon, 3 Jun 2013 09:36:02 +0000 (13:36 +0400)]
fixed norm diff function (it uses pre-allocated buffer now)
Vladislav Vinogradov [Mon, 3 Jun 2013 09:34:41 +0000 (13:34 +0400)]
fixed NPP error constants usage
Vladislav Vinogradov [Mon, 3 Jun 2013 09:33:53 +0000 (13:33 +0400)]
fixed NPP library search (it was splitted)
Vladislav Vinogradov [Mon, 3 Jun 2013 09:24:57 +0000 (13:24 +0400)]
fixed GPU module compialtion with CMake 2.8.11
CMake 2.8.11 removed linkage with CUDA driver library,
but it's used by gpu video encoding/decoding
Roman Donchenko [Mon, 3 Jun 2013 08:13:44 +0000 (12:13 +0400)]
Merge pull request #912 from SpecLad:contributing
Roman Donchenko [Mon, 3 Jun 2013 08:13:15 +0000 (12:13 +0400)]
Merge pull request #934 from SpecLad:parallel-for
Andrey Pavlenko [Fri, 31 May 2013 15:55:51 +0000 (19:55 +0400)]
making the comment less ambigous
Andrey Pavlenko [Fri, 31 May 2013 14:58:30 +0000 (18:58 +0400)]
setting 'char' to be signed by default since some tests fail when it's wrong (e.g. native compilation on ARM Linux)
Roman Donchenko [Fri, 31 May 2013 13:27:42 +0000 (17:27 +0400)]
Make AutoLock noncopyable (it would break on copying, anyway).
Roman Donchenko [Fri, 31 May 2013 12:46:30 +0000 (16:46 +0400)]
Merge pull request #931 from jet47:gpu-test-fixes
peng xiao [Fri, 31 May 2013 09:29:55 +0000 (17:29 +0800)]
Fix build error
peng xiao [Fri, 31 May 2013 08:48:40 +0000 (16:48 +0800)]
Initialize OpenCL context at the end of getDevice call.
Added for better compatibility with the current samples/test cases.
User now will be able to initialize OpenCL context explicitly with
ocl::getDevice api.
This may be obsoleted in future releases.
Roman Donchenko [Thu, 30 May 2013 15:05:59 +0000 (19:05 +0400)]
Split CLAHE into its own file, because it's faster that way.
Yes, it's as ludicrous as it sounds, but it's still true. Bizarrely,
the previous commit makes CLAHE run about 10% slower on Android, even
though it doesn't even touch any CLAHE code. Splitting it off fixes that,
although the reason it does is a mystery for the ages.
It's cleaner when it's in its own file, anyway. ;=]
Roman Donchenko [Thu, 30 May 2013 14:44:33 +0000 (18:44 +0400)]
Replaced most of the usages of parallel_for with that of parallel_for_.
This should allow many algorithms to take advantage of more parallelization
technologies.
peng xiao [Fri, 31 May 2013 08:06:56 +0000 (16:06 +0800)]
Update ocl::surf_matcher sample.
The new sample adjust some parameters thus it should always be able to
calculate valid homography matrix when input is box.png and
box_in_scene.png.
Pure cpp surf and bfmatcher implementation is also added to show the user
its accuracy and performance.
yao [Fri, 31 May 2013 07:35:54 +0000 (15:35 +0800)]
fix a crash on Linux
yao [Fri, 31 May 2013 07:16:03 +0000 (15:16 +0800)]
Adjust perf_filters, as this function only supports 3x3 kernel
peng xiao [Fri, 31 May 2013 02:53:52 +0000 (10:53 +0800)]
Fix ocl::filter2D.
In current implementation, this function only works when anchor point is
in the kernel center and kernel size supported is either 3x3 or 5x5.
peng xiao [Thu, 30 May 2013 01:37:05 +0000 (09:37 +0800)]
Fix ocl::pyrup kernel build on Mac.
Vadim Pisarevsky [Thu, 30 May 2013 08:21:26 +0000 (12:21 +0400)]
Merge pull request #932 from bitwangyaoyao:2.4_fixBFM
yao [Thu, 30 May 2013 08:20:31 +0000 (16:20 +0800)]
a few fixes of ocl::perf test cases
Vadim Pisarevsky [Thu, 30 May 2013 08:01:40 +0000 (12:01 +0400)]
Merge pull request #918 from bitwangyaoyao:2.4_samples
Vadim Pisarevsky [Thu, 30 May 2013 08:01:25 +0000 (12:01 +0400)]
Merge pull request #924 from pengx17:2.4_arithm_fix
Vadim Pisarevsky [Thu, 30 May 2013 08:01:08 +0000 (12:01 +0400)]
Merge pull request #925 from pengx17:2.4_canny_tmp_fix
Vadim Pisarevsky [Thu, 30 May 2013 08:00:46 +0000 (12:00 +0400)]
Merge pull request #927 from bitwangyaoyao:2.4_perf
Roman Donchenko [Thu, 30 May 2013 07:57:24 +0000 (11:57 +0400)]
Merge pull request #930 from pengx17:2.4_haar_ext
yao [Thu, 30 May 2013 06:57:15 +0000 (14:57 +0800)]
Fix brute_force_matcher's hung on some Intel CPU OCL
peng xiao [Thu, 30 May 2013 06:01:19 +0000 (14:01 +0800)]
Add non-stump based ocl Haar cascade classifier support.
For example, haarcascade_frontalface_alt2.xml is now supported.
Note that classifier's pattern of a cascade file must be consistent,
i.e., all trees must either have two nodes or one node, otherwise
unexpected results will occur.
Other fixes:
Test cases are updated.
Some unused codes are removed.
Fix some problems of haar when using OclCascadeClassifierBuf.
Vladislav Vinogradov [Wed, 29 May 2013 13:38:32 +0000 (17:38 +0400)]
fixed some gpu tests (different rounding results due to float arithmetics)
Roman Donchenko [Wed, 29 May 2013 13:10:48 +0000 (17:10 +0400)]
Merge pull request #928 from apavlenko:bugfix_3027
Roman Donchenko [Wed, 29 May 2013 12:53:02 +0000 (16:53 +0400)]
Merge pull request #920 from asmorkalov:android_move
Roman Donchenko [Wed, 29 May 2013 11:27:18 +0000 (15:27 +0400)]
Merge pull request #910 from pengx17:2.4_oclgfft
peng xiao [Wed, 29 May 2013 09:57:14 +0000 (17:57 +0800)]
Merge branch '2.4' of https://github.com/Itseez/opencv into 2.4_oclgfft
Andrey Pavlenko [Wed, 29 May 2013 08:51:26 +0000 (12:51 +0400)]
fixing #3027 (searching JNI even if no ant), fixing java tests status message (ON/OFF)
yao [Wed, 29 May 2013 07:48:56 +0000 (15:48 +0800)]
adjust test cases
peng xiao [Wed, 29 May 2013 06:15:26 +0000 (14:15 +0800)]
Fix 2.4 ocl Canny.
This fix is a workaround for current 2.4 branch without introducing an
additional oclMat buffer into CannyBuf object.
Test case is cleaned up.
Volatile keywords in kernels are removed for performance concern.
Vadim Pisarevsky [Tue, 28 May 2013 18:05:14 +0000 (22:05 +0400)]
Merge pull request #913 from janm399:2.4
Vadim Pisarevsky [Tue, 28 May 2013 18:04:37 +0000 (22:04 +0400)]
Merge pull request #916 from bitwangyaoyao:2.4_fixPyrLK
Vadim Pisarevsky [Tue, 28 May 2013 17:54:51 +0000 (21:54 +0400)]
Merge pull request #919 from abidrahmank:2.4
Vadim Pisarevsky [Tue, 28 May 2013 17:54:24 +0000 (21:54 +0400)]
Merge pull request #923 from pengx17:2.4_macfix
yao [Tue, 28 May 2013 10:07:41 +0000 (18:07 +0800)]
fix memory leak
yao [Tue, 28 May 2013 09:53:06 +0000 (17:53 +0800)]
revise perf
peng xiao [Tue, 28 May 2013 09:27:55 +0000 (17:27 +0800)]
Fix a bug when pushing pointers of arguments into std::vector.
When argument pointers pushed into an vector and the pointers point to
address on stack, we need to make sure they are valid until kernels are
successfully flushed onto the queue.