Petr Glotov [Sat, 17 May 2014 05:52:07 +0000 (22:52 -0700)]
added timelapse
Alexander Alekhin [Thu, 8 May 2014 13:33:26 +0000 (17:33 +0400)]
Merge pull request #2710 from ilya-lavrenov:ipp_threshold
Alexander Alekhin [Thu, 8 May 2014 13:01:37 +0000 (17:01 +0400)]
Merge pull request #2700 from ilya-lavrenov:tapi_cvtColor
Alexander Alekhin [Thu, 8 May 2014 12:57:49 +0000 (16:57 +0400)]
Merge pull request #2697 from PhilLab:master
Ilya Lavrenov [Thu, 8 May 2014 09:49:44 +0000 (13:49 +0400)]
added ipp threshold inplace
Alexander Alekhin [Wed, 7 May 2014 15:17:56 +0000 (19:17 +0400)]
Merge pull request #2665 from ilya-lavrenov:ipp_filter2d
Alexander Alekhin [Wed, 7 May 2014 14:24:40 +0000 (18:24 +0400)]
Merge pull request #2679 from alalek:ippicv_update
Ilya Lavrenov [Mon, 5 May 2014 16:00:05 +0000 (20:00 +0400)]
added OpenCL RGB <-> Luv conversions
Alexander Alekhin [Wed, 7 May 2014 14:01:44 +0000 (18:01 +0400)]
Merge pull request #2605 from akarsakov:ipp_min_eigen_val
Alexander Alekhin [Wed, 7 May 2014 13:57:17 +0000 (17:57 +0400)]
Merge pull request #2684 from ElenaGvozdeva:ippiDFT
Alexander Alekhin [Wed, 7 May 2014 13:07:22 +0000 (17:07 +0400)]
Merge pull request #2658 from akarsakov:ipp_hough
Alexander Alekhin [Wed, 7 May 2014 12:49:58 +0000 (16:49 +0400)]
Merge pull request #2676 from ilya-lavrenov:ipp_gaussianblur
Ilya Lavrenov [Tue, 15 Apr 2014 20:53:38 +0000 (00:53 +0400)]
cv::fitler2D
Ilya Lavrenov [Mon, 28 Apr 2014 15:44:17 +0000 (19:44 +0400)]
changes sigma in perf tests
Alexander Alekhin [Wed, 7 May 2014 10:49:13 +0000 (14:49 +0400)]
Merge pull request #2634 from ElenaGvozdeva:ippiDCT
Alexander Karsakov [Tue, 6 May 2014 10:24:49 +0000 (14:24 +0400)]
Changed check condition in tests in case ipp disabled.
Elena Gvozdeva [Mon, 5 May 2014 12:42:47 +0000 (16:42 +0400)]
fixed
Alexander Alekhin [Tue, 6 May 2014 09:27:03 +0000 (13:27 +0400)]
Merge pull request #2687 from ilya-lavrenov:tapi_norm_inf_234cn
Elena Gvozdeva [Tue, 6 May 2014 07:10:26 +0000 (11:10 +0400)]
fixed
Alexander Alekhin [Tue, 6 May 2014 08:59:03 +0000 (12:59 +0400)]
Merge pull request #2660 from arkunze:pullreq/140423-filter2D
PhilLab [Mon, 5 May 2014 15:44:59 +0000 (17:44 +0200)]
Update solvepnp.cpp
Clarified assert message for allowed PnP flags
Alexander Alekhin [Mon, 5 May 2014 15:24:07 +0000 (19:24 +0400)]
Merge pull request #2694 from rokm:matlab
Alexander Alekhin [Mon, 5 May 2014 14:00:40 +0000 (18:00 +0400)]
Merge pull request #2619 from GregoryMorse:patch-3
Alexander Alekhin [Mon, 5 May 2014 13:55:13 +0000 (17:55 +0400)]
Merge pull request #2678 from intbots:master
Alexander Alekhin [Mon, 5 May 2014 11:21:12 +0000 (15:21 +0400)]
Merge pull request #2688 from akarsakov:ipp_disable_resize_8u
Alexander Alekhin [Mon, 5 May 2014 11:20:46 +0000 (15:20 +0400)]
Merge pull request #2686 from vbystricky:ippicv_integral
Alexander Alekhin [Mon, 5 May 2014 11:20:19 +0000 (15:20 +0400)]
Merge pull request #2635 from akarsakov:gaussian_float_intel
Alexander Karsakov [Mon, 5 May 2014 10:40:59 +0000 (14:40 +0400)]
Used AutoBuffer instead ippsMalloc
Rok Mandeljc [Mon, 28 Apr 2014 11:42:27 +0000 (13:42 +0200)]
Matlab bindings: CMakeLists.txt: use "${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}" as MEX_LIB_DIR only when compiling with MSVC, otherwise, use only "${LIBRARY_OUTPUT_PATH}"
Rok Mandeljc [Mon, 28 Apr 2014 13:43:12 +0000 (15:43 +0200)]
Matlab bindings: fixed the functional template to perform an explicit cast to the type of an input option that is expected. This avoids issues with ternary operator not having the same type in rvalue and lvalue, such as in the case below:
Ptr_FeatureDetector blobDetector = inputs[3].empty() ? makePtr<SimpleBlobDetector>() : inputs[3].toPtrFeatureDetector();
Which after the patch, would be:
Ptr_FeatureDetector blobDetector = inputs[3].empty() ? (Ptr_FeatureDetector) makePtr<SimpleBlobDetector>() : inputs[3].toPtrFeatureDetector();
Rok Mandeljc [Mon, 28 Apr 2014 09:09:10 +0000 (11:09 +0200)]
Matlab bindings: added missing compound type declarations from photo module
Alexander Alekhin [Wed, 30 Apr 2014 14:01:25 +0000 (18:01 +0400)]
replaced sanity check condition for stitching perf test
Alexander Karsakov [Wed, 30 Apr 2014 13:28:35 +0000 (17:28 +0400)]
Disabled IPP resize for CV_8U
Ilya Lavrenov [Wed, 30 Apr 2014 10:59:37 +0000 (14:59 +0400)]
added cn>1 support to cv::norm (NORM_INF)
vbystricky [Wed, 30 Apr 2014 08:55:34 +0000 (12:55 +0400)]
Disable ipp integral in IPPICV version
Alexander Alekhin [Tue, 29 Apr 2014 10:57:44 +0000 (14:57 +0400)]
fix IPPDerivSobel condition
Alexander Alekhin [Mon, 28 Apr 2014 15:31:18 +0000 (19:31 +0400)]
icv: enable functions
Alexander Alekhin [Mon, 28 Apr 2014 14:36:58 +0000 (18:36 +0400)]
icv: update package
Alexander Alekhin [Tue, 29 Apr 2014 11:34:01 +0000 (15:34 +0400)]
Merge pull request #2682 from ElenaGvozdeva:ippiDFT
Alexander Alekhin [Tue, 29 Apr 2014 11:15:32 +0000 (15:15 +0400)]
Merge pull request #2667 from akarsakov:ipp_otsu
Alexander Alekhin [Tue, 29 Apr 2014 08:26:48 +0000 (12:26 +0400)]
Merge pull request #2677 from ilya-lavrenov:ipp_compilation
Elena Gvozdeva [Tue, 29 Apr 2014 08:23:23 +0000 (12:23 +0400)]
IPP: cv::dft fixed
Elena Gvozdeva [Fri, 25 Apr 2014 08:30:30 +0000 (12:30 +0400)]
fixed
Elena Gvozdeva [Mon, 21 Apr 2014 08:43:26 +0000 (12:43 +0400)]
Added parallel version for DCT_ROWS
Elena Gvozdeva [Wed, 16 Apr 2014 10:31:44 +0000 (14:31 +0400)]
IPP: cv::dct
Abhijit Kundu [Mon, 28 Apr 2014 11:23:49 +0000 (07:23 -0400)]
Added suuport for finding Intel TBB for Visual Studio 2013
Alexander Alekhin [Mon, 28 Apr 2014 11:15:11 +0000 (15:15 +0400)]
Merge pull request #2653 from alalek:ipp_lut
Alexander Alekhin [Mon, 28 Apr 2014 11:14:40 +0000 (15:14 +0400)]
Merge pull request #2654 from ElenaGvozdeva:ipp_DFT
Alexander Alekhin [Mon, 28 Apr 2014 11:06:05 +0000 (15:06 +0400)]
Merge pull request #2674 from akarsakov:ocl_hog_fix_epsilon
Ilya Lavrenov [Mon, 28 Apr 2014 10:04:41 +0000 (14:04 +0400)]
fixed compilation
Roman Donchenko [Mon, 28 Apr 2014 09:51:44 +0000 (13:51 +0400)]
Merge pull request #2675 from SpecLad:merge-2.4
Roman Donchenko [Mon, 28 Apr 2014 09:50:49 +0000 (13:50 +0400)]
Merge pull request #2668 from vbystricky:perf_TransformECC
Ilya Lavrenov [Mon, 28 Apr 2014 09:50:28 +0000 (13:50 +0400)]
added more types to cv::GaussianBlur
Roman Donchenko [Mon, 28 Apr 2014 08:08:21 +0000 (12:08 +0400)]
Merge remote-tracking branch 'origin/2.4' into merge-2.4
Alexander Karsakov [Mon, 28 Apr 2014 07:37:46 +0000 (11:37 +0400)]
Changed epsilon for hog test, because hog detector is sensible to resize accuracy.
Roman Donchenko [Mon, 28 Apr 2014 07:36:12 +0000 (11:36 +0400)]
Merge pull request #2659 from adrians:docs_pull_1
Alexander Karsakov [Fri, 25 Apr 2014 16:24:37 +0000 (20:24 +0400)]
Added setIppErrorStatus()
vbystricky [Fri, 25 Apr 2014 13:33:38 +0000 (17:33 +0400)]
Fix problem with sanity check of transform ecc with ipp resize
Alexander Karsakov [Fri, 25 Apr 2014 13:31:45 +0000 (17:31 +0400)]
Added ippiComputeThreshold_Otsu to cv::threshold
Alexander Alekhin [Tue, 22 Apr 2014 15:52:37 +0000 (19:52 +0400)]
ipp: added LUT optimization
Elena Gvozdeva [Wed, 23 Apr 2014 14:17:50 +0000 (18:17 +0400)]
Added parallel version for DFT_ROWS
Alexander Alekhin [Thu, 24 Apr 2014 16:30:34 +0000 (20:30 +0400)]
Merge pull request #2656 from ilya-lavrenov:ipp_copymakeborder
Alexander Alekhin [Thu, 24 Apr 2014 16:25:42 +0000 (20:25 +0400)]
Merge pull request #2662 from vbystricky:ipp_MatchTempl
Alexander Karsakov [Thu, 24 Apr 2014 13:58:20 +0000 (17:58 +0400)]
Disabled ippiHoughLine_Region for cv::HoughLines
Alexander Karsakov [Fri, 18 Apr 2014 05:01:08 +0000 (09:01 +0400)]
Added setIppErrorStatus()
Ilya Lavrenov [Wed, 23 Apr 2014 10:18:20 +0000 (14:18 +0400)]
cv::copyMakeBorder
Alexander Karsakov [Wed, 23 Apr 2014 07:59:19 +0000 (11:59 +0400)]
Added ippiHoughProbLine to cv::HoughLinesP
vbystricky [Thu, 24 Apr 2014 06:48:32 +0000 (10:48 +0400)]
Fix epsilon calculation for sanity check in x32 build
Adrian Stratulat [Wed, 23 Apr 2014 17:30:27 +0000 (17:30 +0000)]
Documentation - minor fix-ups
Aaron Kunze [Wed, 23 Apr 2014 17:20:09 +0000 (10:20 -0700)]
Optimizes filter2D for Intel GPUs
Alexander Alekhin [Wed, 23 Apr 2014 16:06:55 +0000 (20:06 +0400)]
Merge pull request #2651 from ilya-lavrenov:ipp_minmaxidx_3cn
Andrey Pavlenko [Wed, 23 Apr 2014 12:27:33 +0000 (16:27 +0400)]
Merge pull request #2655 from akarsakov:ipp_fix_pyramid
Elena Gvozdeva [Wed, 23 Apr 2014 07:32:12 +0000 (11:32 +0400)]
IPP: CV::dft
Andrey Pavlenko [Wed, 23 Apr 2014 11:12:44 +0000 (15:12 +0400)]
Merge pull request #2620 from ilya-lavrenov:ipp_integration
Alexander Karsakov [Fri, 18 Apr 2014 04:55:38 +0000 (08:55 +0400)]
Changed tests for support intersection between expected and actual lists of lines.
Alexander Karsakov [Fri, 11 Apr 2014 07:31:21 +0000 (11:31 +0400)]
Added ippiHoughLine_Region to cv::HoughLines
Alexander Alekhin [Wed, 23 Apr 2014 07:51:01 +0000 (11:51 +0400)]
Merge pull request #2646 from ilya-lavrenov:ipp_remap
Alexander Alekhin [Wed, 23 Apr 2014 07:50:12 +0000 (11:50 +0400)]
Merge pull request #2647 from vbystricky:ipp_norm
Alexander Alekhin [Wed, 23 Apr 2014 07:49:42 +0000 (11:49 +0400)]
Merge pull request #2649 from ilya-lavrenov:gabor_eps
Alexander Karsakov [Wed, 23 Apr 2014 07:47:15 +0000 (11:47 +0400)]
Added checking destination size for pyrUp, pyrDown.
Alexander Karsakov [Fri, 18 Apr 2014 07:35:53 +0000 (11:35 +0400)]
Changed integer operations to float for Intel devices
Ilya Lavrenov [Tue, 22 Apr 2014 15:19:38 +0000 (19:19 +0400)]
cv::minMaxIdx for cn > 1
Alexander Alekhin [Tue, 22 Apr 2014 15:00:01 +0000 (19:00 +0400)]
Merge pull request #2648 from ilya-lavrenov:ipp_dist
Andrey Pavlenko [Tue, 22 Apr 2014 13:19:27 +0000 (17:19 +0400)]
Merge pull request #2627 from akarsakov:ipp_pyramids
Ilya Lavrenov [Tue, 22 Apr 2014 11:49:17 +0000 (15:49 +0400)]
changes eps
vbystricky [Tue, 22 Apr 2014 11:07:03 +0000 (15:07 +0400)]
Fix error in arguments of ipp function
Alexander Alekhin [Tue, 22 Apr 2014 11:02:12 +0000 (15:02 +0400)]
Merge pull request #2618 from vbystricky:ipp_Scharr
Ilya Lavrenov [Tue, 22 Apr 2014 10:55:28 +0000 (14:55 +0400)]
fix for IPP ICV
Ilya Lavrenov [Fri, 18 Apr 2014 10:25:38 +0000 (14:25 +0400)]
fixes
vbystricky [Tue, 22 Apr 2014 10:35:27 +0000 (14:35 +0400)]
Fix error in ipp function call
Ilya Lavrenov [Tue, 15 Apr 2014 19:43:14 +0000 (23:43 +0400)]
cv::remap
Alexander Alekhin [Tue, 22 Apr 2014 09:45:31 +0000 (13:45 +0400)]
Merge pull request #2645 from vbystricky:ipp_Convert
vbystricky [Tue, 22 Apr 2014 09:27:20 +0000 (13:27 +0400)]
Change test conditions
Roman Donchenko [Tue, 22 Apr 2014 08:01:47 +0000 (12:01 +0400)]
Merge pull request #2640 from a-wi:2.4
Roman Donchenko [Tue, 22 Apr 2014 08:01:03 +0000 (12:01 +0400)]
Merge pull request #2641 from SpecLad:merge-2.4
Andrey Pavlenko [Tue, 22 Apr 2014 07:55:05 +0000 (11:55 +0400)]
Merge pull request #2643 from vbystricky:ipp_GaussianBorder
Andrey Pavlenko [Tue, 22 Apr 2014 07:53:25 +0000 (11:53 +0400)]
Merge pull request #2642 from vbystricky:ipp_resize
Andrey Pavlenko [Tue, 22 Apr 2014 07:48:25 +0000 (11:48 +0400)]
Merge pull request #2624 from ElenaGvozdeva:ipp_DistanceTransform
vbystricky [Tue, 22 Apr 2014 06:50:35 +0000 (10:50 +0400)]
Fix call of ippiConvert.
Andrey Pavlenko [Tue, 22 Apr 2014 05:32:38 +0000 (09:32 +0400)]
Merge pull request #2612 from grkutty:pullreq/140319-bilateral-b