profile/ivi/opencv.git
9 years agoadd input paramter checking that verifies the existance of the input files to stero_m...
Brian Park [Wed, 22 Oct 2014 05:47:49 +0000 (22:47 -0700)]
add input paramter checking that verifies the existance of the input files to stero_match example

9 years agoMerge pull request #3352 from alucarded:BackgroundSubtractorMOG2_optimization
Vadim Pisarevsky [Wed, 22 Oct 2014 01:55:23 +0000 (01:55 +0000)]
Merge pull request #3352 from alucarded:BackgroundSubtractorMOG2_optimization

9 years agoOptimize OpenCL version of conversScaleAbs function
vbystricky [Mon, 20 Oct 2014 13:43:18 +0000 (17:43 +0400)]
Optimize OpenCL version of conversScaleAbs function

9 years agoUsed direct float calculations
Alexander Karsakov [Tue, 14 Oct 2014 12:31:10 +0000 (16:31 +0400)]
Used direct float calculations

9 years agoAdded OCL code for YUV422 -> RGB[A]|BGR[A] color conversion
Alexander Karsakov [Mon, 6 Oct 2014 15:21:57 +0000 (19:21 +0400)]
Added OCL code for YUV422 -> RGB[A]|BGR[A] color conversion

9 years agoAdded OCL code for RGB[A]|BGR[A] -> YUV_[YV12|IYUV] color conversion
Alexander Karsakov [Mon, 6 Oct 2014 15:19:44 +0000 (19:19 +0400)]
Added OCL code for RGB[A]|BGR[A] -> YUV_[YV12|IYUV] color conversion

9 years agoAdded OCL code for YUV2GRAY_420 color conversion
Alexander Karsakov [Fri, 3 Oct 2014 08:29:15 +0000 (12:29 +0400)]
Added OCL code for YUV2GRAY_420 color conversion

9 years agoAdded OCL code for YUV2BGR_YV12 and YUV2BGR_IYUV color conversions
Alexander Karsakov [Thu, 2 Oct 2014 14:10:14 +0000 (18:10 +0400)]
Added OCL code for YUV2BGR_YV12 and YUV2BGR_IYUV color conversions

9 years agoAdded support for YUV2RGB[A]_NV21 and YUV2BGR[A]_NV21 conversion
Alexander Karsakov [Wed, 1 Oct 2014 14:08:07 +0000 (18:08 +0400)]
Added support for YUV2RGB[A]_NV21 and YUV2BGR[A]_NV21 conversion

9 years agoadded performance validation check
Alexander Alekhin [Tue, 21 Oct 2014 11:23:19 +0000 (15:23 +0400)]
added performance validation check

9 years agoMerge pull request #3355 from ElenaGvozdeva:predictOptimalVectorWidth
Alexander Alekhin [Tue, 21 Oct 2014 11:23:06 +0000 (11:23 +0000)]
Merge pull request #3355 from ElenaGvozdeva:predictOptimalVectorWidth

9 years agoChanged predictOptimalVectorWidth function, now it is possible to choose vector size.
ElenaGvozdeva [Tue, 21 Oct 2014 10:13:15 +0000 (13:13 +0300)]
Changed predictOptimalVectorWidth function, now it is possible to choose vector size.

9 years agoMerge pull request #3256 from vbystricky:oclopt_BFMatcher
Alexander Alekhin [Tue, 21 Oct 2014 08:59:23 +0000 (08:59 +0000)]
Merge pull request #3256 from vbystricky:oclopt_BFMatcher

9 years agoBackgroundSubtractorMOG2, learningRate=0 optimization
Tomasz Posłuszny [Sun, 19 Oct 2014 21:50:37 +0000 (23:50 +0200)]
BackgroundSubtractorMOG2, learningRate=0 optimization

9 years agoUpdate hog.cpp
Chuanbo Weng [Mon, 20 Oct 2014 10:14:38 +0000 (18:14 +0800)]
Update hog.cpp

Update according to vbystricky's comments

9 years agoMerge pull request #3344 from mshabunin:java_automation
Vadim Pisarevsky [Mon, 20 Oct 2014 06:50:34 +0000 (06:50 +0000)]
Merge pull request #3344 from mshabunin:java_automation

9 years agoMerge pull request #3349 from a-wi:DShow_Strsafe_header_v3
Vadim Pisarevsky [Mon, 20 Oct 2014 06:49:18 +0000 (06:49 +0000)]
Merge pull request #3349 from a-wi:DShow_Strsafe_header_v3

9 years agoMerge pull request #3292 from mshabunin:fix-ios-warnings
Vadim Pisarevsky [Mon, 20 Oct 2014 06:41:51 +0000 (06:41 +0000)]
Merge pull request #3292 from mshabunin:fix-ios-warnings

9 years agoCorrectly enable OpenCL mode in tapi's hog example.
Chuanbo Weng [Mon, 20 Oct 2014 03:50:46 +0000 (11:50 +0800)]
Correctly enable OpenCL mode in tapi's hog example.

For current OpenCV-CL architecture, if the data buffer
allocated in UMat are cpu buffer(not ocl buffer) under
cpu mode, and then pass this UMat to an OpenCL kernel
as an argument, the OpenCL path will fail and fallback
to cpu mode. Take HOGDescriptor::oclSvmDetector as an example:
    ocl::setUseOpenCL(false);
    //data allocated in hog.oclSvmDetector will be cpu buffer
    hog.setSVMDetector(HOGDescriptor::getDaimlerPeopleDetector());
    ocl::setUseOpenCL(true);
    //We enabled OpenCL, but hog.oclSvmDetector are cpu buffer,
    //so it will fail in the function ocl_classify_hists
    //when reach to this line
    //idx = k.set(idx, ocl::KernelArg::PtrReadOnly(detector));
    hog.detectMultiScale(img, found, hit_threshold, win_stride,
            Size(0, 0), scale, gr_threshold);

Similar problems heppen on img_aux and img. So we should re-define
or re-set these UMat when do mode switch (CPU -> OpenCL) in order
to make their data be allocated by ocl and then OpenCL path will
succeed.

Signed-off-by: Chuanbo Weng <chuanbo.weng@intel.com>
9 years agoMerge pull request #3348 from vpisarev:refactor_algorithms2
Vadim Pisarevsky [Sat, 18 Oct 2014 18:52:35 +0000 (18:52 +0000)]
Merge pull request #3348 from vpisarev:refactor_algorithms2

9 years agoInclude strsafe.h to compile successfully under MinGW in Debug mode.
Artur Wieczorek [Sat, 18 Oct 2014 18:27:49 +0000 (20:27 +0200)]
Include strsafe.h to compile successfully under MinGW in Debug mode.

9 years agofixed MSVC warnings and iOS framework compile error
Vadim Pisarevsky [Sat, 18 Oct 2014 17:58:34 +0000 (21:58 +0400)]
fixed MSVC warnings and iOS framework compile error

9 years agoMerge pull request #3345 from D-Alex:master
Vadim Pisarevsky [Sat, 18 Oct 2014 17:00:31 +0000 (17:00 +0000)]
Merge pull request #3345 from D-Alex:master

9 years agoMerge pull request #3347 from Nerei:memory_leak_in_viz_opencv30
Vadim Pisarevsky [Sat, 18 Oct 2014 16:57:35 +0000 (16:57 +0000)]
Merge pull request #3347 from Nerei:memory_leak_in_viz_opencv30

9 years agofixed bug in automatic SVM training
Vadim Pisarevsky [Sat, 18 Oct 2014 16:53:39 +0000 (20:53 +0400)]
fixed bug in automatic SVM training

9 years agoquickly corrected the previous refactoring of features2d: moved from set(SOME_PROP...
Vadim Pisarevsky [Sat, 18 Oct 2014 16:44:26 +0000 (20:44 +0400)]
quickly corrected the previous refactoring of features2d: moved from set(SOME_PROP, val) to setSomeProp(val)

9 years agoviz: fixed memory leak
Anatoly Baksheev [Sat, 18 Oct 2014 14:17:42 +0000 (18:17 +0400)]
viz: fixed memory leak

9 years agofix warning in template Scalar::mul gcc < 4.8
Alexander Duda [Sat, 18 Oct 2014 12:22:27 +0000 (14:22 +0200)]
fix warning in template Scalar::mul gcc < 4.8

In this particular case t shadows transpose of the base class Matx:
types.hpp:1805:14: warning: declaration of ‘t’ shadows a member of
'this' [-Wshadow]

Changelog gcc 4.8: The option -Wshadow no longer warns if a declaration
shadows a function declaration.

This warning is problematic because it prevents the module
opencv_contrib/modules/ruby to pass the build process

9 years agoOptimize OpenCL version of BFMatcher
vbystricky [Tue, 23 Sep 2014 11:13:46 +0000 (15:13 +0400)]
Optimize OpenCL version of BFMatcher

9 years agoRefactoring in gen_java.py script
Maksim Shabunin [Fri, 17 Oct 2014 15:36:24 +0000 (19:36 +0400)]
Refactoring in gen_java.py script

9 years agofinal fix
Maksim Shabunin [Fri, 17 Oct 2014 14:29:30 +0000 (18:29 +0400)]
final fix

9 years agoFixing iOS clang warnings, part 3
Maksim Shabunin [Fri, 17 Oct 2014 12:46:47 +0000 (16:46 +0400)]
Fixing iOS clang warnings, part 3

9 years agoFixing iOS clang warnings, part 2
Maksim Shabunin [Fri, 17 Oct 2014 12:32:53 +0000 (16:32 +0400)]
Fixing iOS clang warnings, part 2

9 years agoForgotten punctuation
Maksim Shabunin [Fri, 17 Oct 2014 11:50:57 +0000 (15:50 +0400)]
Forgotten punctuation

9 years agoFixing iOS clang warnings, part 1
Maksim Shabunin [Fri, 17 Oct 2014 11:45:13 +0000 (15:45 +0400)]
Fixing iOS clang warnings, part 1

9 years agoExtracted repeated cmake instruction block
Maksim Shabunin [Fri, 17 Oct 2014 10:37:25 +0000 (14:37 +0400)]
Extracted repeated cmake instruction block

9 years agoSuppressed some iOS framework compilation warnings
Maksim Shabunin [Wed, 1 Oct 2014 07:44:28 +0000 (11:44 +0400)]
Suppressed some iOS framework compilation warnings

9 years agoMerge pull request #3339 from vpisarev:refactor_features2d_take4
Vadim Pisarevsky [Fri, 17 Oct 2014 14:07:06 +0000 (14:07 +0000)]
Merge pull request #3339 from vpisarev:refactor_features2d_take4

9 years agofixed incorrect array access in solvepnp (which affected debug builds only)
Vadim Pisarevsky [Fri, 17 Oct 2014 13:01:39 +0000 (17:01 +0400)]
fixed incorrect array access in solvepnp (which affected debug builds only)

9 years agoanother fix in opencv_world
Vadim Pisarevsky [Fri, 17 Oct 2014 12:09:09 +0000 (16:09 +0400)]
another fix in opencv_world

9 years agofixed opencv_world build
Vadim Pisarevsky [Fri, 17 Oct 2014 12:05:38 +0000 (16:05 +0400)]
fixed opencv_world build

9 years agofixed msvc compile warning
Vadim Pisarevsky [Fri, 17 Oct 2014 11:56:27 +0000 (15:56 +0400)]
fixed msvc compile warning

9 years agoMerge branch 'refactor_features2d_take4' of https://github.com/vpisarev/opencv into...
Vadim Pisarevsky [Fri, 17 Oct 2014 11:13:35 +0000 (15:13 +0400)]
Merge branch 'refactor_features2d_take4' of https://github.com/vpisarev/opencv into refactor_features2d_take4

Conflicts:
modules/features2d/src/orb.cpp

9 years agofixed error in OpenCL ORB
Vadim Pisarevsky [Fri, 17 Oct 2014 10:30:12 +0000 (14:30 +0400)]
fixed error in OpenCL ORB

9 years agofixed some more compile errors and test failures
Vadim Pisarevsky [Fri, 17 Oct 2014 10:22:02 +0000 (14:22 +0400)]
fixed some more compile errors and test failures

9 years agotrying to fix strange compiler bug
Vadim Pisarevsky [Thu, 16 Oct 2014 19:10:00 +0000 (23:10 +0400)]
trying to fix strange compiler bug

9 years agofixed opencv_java build
Vadim Pisarevsky [Thu, 16 Oct 2014 18:52:04 +0000 (22:52 +0400)]
fixed opencv_java build

9 years agook; all the tests now pass
Vadim Pisarevsky [Thu, 16 Oct 2014 17:59:38 +0000 (21:59 +0400)]
ok; all the tests now pass

9 years agoall the tests now pass except for MSER
Vadim Pisarevsky [Thu, 16 Oct 2014 16:58:29 +0000 (20:58 +0400)]
all the tests now pass except for MSER

9 years agofixed several test failures; currently 9 out of 73 tests fail
Vadim Pisarevsky [Thu, 16 Oct 2014 13:00:40 +0000 (17:00 +0400)]
fixed several test failures; currently 9 out of 73 tests fail

9 years agonow all the samples and opencv_contrib compile!
Vadim Pisarevsky [Thu, 16 Oct 2014 12:34:22 +0000 (16:34 +0400)]
now all the samples and opencv_contrib compile!

9 years agoOpenCV with the refactored features2d compiles! contrib is broken for now; the tests...
Vadim Pisarevsky [Wed, 15 Oct 2014 18:49:17 +0000 (22:49 +0400)]
OpenCV with the refactored features2d compiles! contrib is broken for now; the tests are not tried yet

9 years agoyet another attempt to refactor features2d; the first commit, features2d does not...
Vadim Pisarevsky [Mon, 13 Oct 2014 19:01:45 +0000 (23:01 +0400)]
yet another attempt to refactor features2d; the first commit, features2d does not even compile

9 years agotrying to resolve the merge conflict
Vadim Pisarevsky [Fri, 17 Oct 2014 10:46:08 +0000 (14:46 +0400)]
trying to resolve the merge conflict

9 years agofixed error in OpenCL ORB
Vadim Pisarevsky [Fri, 17 Oct 2014 10:30:12 +0000 (14:30 +0400)]
fixed error in OpenCL ORB

9 years agofixed some more compile errors and test failures
Vadim Pisarevsky [Fri, 17 Oct 2014 10:22:02 +0000 (14:22 +0400)]
fixed some more compile errors and test failures

9 years agotrying to fix strange compiler bug
Vadim Pisarevsky [Thu, 16 Oct 2014 19:10:00 +0000 (23:10 +0400)]
trying to fix strange compiler bug

9 years agofixed opencv_java build
Vadim Pisarevsky [Thu, 16 Oct 2014 18:52:04 +0000 (22:52 +0400)]
fixed opencv_java build

9 years agook; all the tests now pass
Vadim Pisarevsky [Thu, 16 Oct 2014 17:59:38 +0000 (21:59 +0400)]
ok; all the tests now pass

9 years agoall the tests now pass except for MSER
Vadim Pisarevsky [Thu, 16 Oct 2014 16:58:29 +0000 (20:58 +0400)]
all the tests now pass except for MSER

9 years agoMerge pull request #3332 from lupustr3:pvlasov/implementation_detector
Alexander Alekhin [Thu, 16 Oct 2014 14:51:53 +0000 (14:51 +0000)]
Merge pull request #3332 from lupustr3:pvlasov/implementation_detector

9 years agofixed several test failures; currently 9 out of 73 tests fail
Vadim Pisarevsky [Thu, 16 Oct 2014 13:00:40 +0000 (17:00 +0400)]
fixed several test failures; currently 9 out of 73 tests fail

9 years agonow all the samples and opencv_contrib compile!
Vadim Pisarevsky [Thu, 16 Oct 2014 12:34:22 +0000 (16:34 +0400)]
now all the samples and opencv_contrib compile!

9 years agoMerge pull request #3338 from ilya-lavrenov:ios_fixes
Alexander Alekhin [Thu, 16 Oct 2014 11:53:41 +0000 (11:53 +0000)]
Merge pull request #3338 from ilya-lavrenov:ios_fixes

9 years agoMerge pull request #3270 from boaz001:patch-1
Vadim Pisarevsky [Thu, 16 Oct 2014 10:09:28 +0000 (10:09 +0000)]
Merge pull request #3270 from boaz001:patch-1

9 years agofixes
Ilya Lavrenov [Wed, 15 Oct 2014 20:23:39 +0000 (00:23 +0400)]
fixes

9 years agoApplied proposed fix
Boaz Stolk [Wed, 15 Oct 2014 18:40:04 +0000 (20:40 +0200)]
Applied proposed fix

9 years agoOpenCV with the refactored features2d compiles! contrib is broken for now; the tests...
Vadim Pisarevsky [Wed, 15 Oct 2014 18:49:17 +0000 (22:49 +0400)]
OpenCV with the refactored features2d compiles! contrib is broken for now; the tests are not tried yet

9 years agoMerge pull request #3334 from micha137:patch-2
Vadim Pisarevsky [Wed, 15 Oct 2014 10:32:16 +0000 (10:32 +0000)]
Merge pull request #3334 from micha137:patch-2

9 years agoMerge pull request #3333 from micha137:patch-1
Vadim Pisarevsky [Wed, 15 Oct 2014 10:31:58 +0000 (10:31 +0000)]
Merge pull request #3333 from micha137:patch-1

9 years agoMerge pull request #3335 from ilya-lavrenov:neon_ios
Vadim Pisarevsky [Wed, 15 Oct 2014 10:29:53 +0000 (10:29 +0000)]
Merge pull request #3335 from ilya-lavrenov:neon_ios

9 years agoImplementation detector and selector for IPP and OpenCL;
Pavel Vlasov [Fri, 3 Oct 2014 11:17:28 +0000 (15:17 +0400)]
Implementation detector and selector for IPP and OpenCL;

IPP can be switched on and off on runtime;

Optional implementation collector was added (switched off by default in CMake). Gathers data of implementation used in functions and report this info through performance TS;

TS modifications for implementations control;

9 years agoadjust numerical precision for windows build
Adrien BAK [Wed, 15 Oct 2014 03:47:53 +0000 (12:47 +0900)]
adjust numerical precision for windows build

9 years agofix warnings in samples
Adrien BAK [Wed, 15 Oct 2014 02:09:33 +0000 (11:09 +0900)]
fix warnings in samples

9 years agosuppress warnings
Adrien BAK [Tue, 14 Oct 2014 10:07:15 +0000 (19:07 +0900)]
suppress warnings

9 years agowhitespace
Adrien BAK [Tue, 14 Oct 2014 07:45:02 +0000 (16:45 +0900)]
whitespace

9 years agowhitespaces
Adrien BAK [Tue, 14 Oct 2014 07:31:22 +0000 (16:31 +0900)]
whitespaces

9 years agowhite space
Adrien BAK [Tue, 14 Oct 2014 07:10:53 +0000 (16:10 +0900)]
white space

9 years agoprecalculate indices
Adrien BAK [Tue, 14 Oct 2014 03:31:56 +0000 (12:31 +0900)]
precalculate indices

9 years agoremove unnecessary buffer copies
Adrien BAK [Tue, 14 Oct 2014 02:10:18 +0000 (11:10 +0900)]
remove unnecessary buffer copies

9 years agorefactor poisson_solver
Adrien BAK [Fri, 10 Oct 2014 06:56:32 +0000 (15:56 +0900)]
refactor poisson_solver

9 years agomove calls to ptr<>
Adrien BAK [Fri, 10 Oct 2014 05:49:10 +0000 (14:49 +0900)]
move calls to ptr<>

9 years agoanother useless include
Adrien BAK [Fri, 10 Oct 2014 05:16:57 +0000 (14:16 +0900)]
another useless include

9 years agoat<> -> ptr<>
Adrien BAK [Thu, 9 Oct 2014 07:35:30 +0000 (16:35 +0900)]
at<> -> ptr<>

9 years ago.size().width -> cols
Adrien BAK [Thu, 9 Oct 2014 07:23:03 +0000 (16:23 +0900)]
.size().width -> cols

9 years agoremove useless include
Adrien BAK [Thu, 9 Oct 2014 07:21:26 +0000 (16:21 +0900)]
remove useless include

9 years agochange numerical precision because of architecture discrepancy
Adrien BAK [Wed, 8 Oct 2014 07:57:09 +0000 (16:57 +0900)]
change numerical precision because of architecture discrepancy

9 years agonorm -> cvtest::norm
Adrien BAK [Wed, 8 Oct 2014 02:49:09 +0000 (11:49 +0900)]
norm -> cvtest::norm

9 years agoremove useless includes
Adrien BAK [Wed, 8 Oct 2014 02:18:14 +0000 (11:18 +0900)]
remove useless includes

9 years agofactor conditional save
Adrien BAK [Wed, 8 Oct 2014 02:15:41 +0000 (11:15 +0900)]
factor conditional save

9 years agocoding guidelines
Adrien BAK [Wed, 8 Oct 2014 02:15:29 +0000 (11:15 +0900)]
coding guidelines

9 years agoremove debugging code
Adrien BAK [Wed, 8 Oct 2014 02:14:33 +0000 (11:14 +0900)]
remove debugging code

9 years agoreplace implementation of dst
Adrien BAK [Tue, 7 Oct 2014 08:11:59 +0000 (17:11 +0900)]
replace implementation of dst

9 years agoreplace double by float
Adrien BAK [Sun, 5 Oct 2014 06:38:12 +0000 (15:38 +0900)]
replace double by float

9 years agosimplify a line
Adrien BAK [Thu, 2 Oct 2014 06:36:53 +0000 (15:36 +0900)]
simplify a line

9 years agothis has been submitted to the daily wtf
Adrien BAK [Thu, 2 Oct 2014 06:24:24 +0000 (15:24 +0900)]
this has been submitted to the daily wtf

9 years agoreplace 8 loops by 2
Adrien BAK [Thu, 2 Oct 2014 03:54:26 +0000 (12:54 +0900)]
replace 8 loops by 2

9 years agoreplace double* by vector<double>
Adrien BAK [Thu, 2 Oct 2014 02:50:08 +0000 (11:50 +0900)]
replace double* by vector<double>

9 years agoremove logging
Adrien BAK [Thu, 2 Oct 2014 02:49:37 +0000 (11:49 +0900)]
remove logging

9 years agoremove some more useless buffers and rename a bunch of variables
Adrien BAK [Wed, 1 Oct 2014 06:20:57 +0000 (15:20 +0900)]
remove some more useless buffers and rename a bunch of variables