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
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 Karsakov [Wed, 30 Apr 2014 13:28:35 +0000 (17:28 +0400)]
Disabled IPP resize for CV_8U
vbystricky [Wed, 30 Apr 2014 08:55:34 +0000 (12:55 +0400)]
Disable ipp integral in IPPICV version
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
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
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
Ilya Lavrenov [Wed, 23 Apr 2014 10:18:20 +0000 (14:18 +0400)]
cv::copyMakeBorder
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
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 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
Artur Wieczorek [Sun, 20 Apr 2014 19:37:29 +0000 (21:37 +0200)]
Fix for issue #3645 (code.opencv.org/issues/3645).
Implement missing features in CvCaptureCAM_VFW class.
Implemented missing CvCaptureCAM_VFW::setProperty() member function (handling CV_CAP_PROP_FRAME_WIDTH, CV_CAP_PROP_FRAME_HEIGHT, CV_CAP_PROP_FPS properties).
Extended CvCaptureCAM_VFW::setProperty()/getProperty() functions to handle also CV_CAP_PROP_FPS property.
Minor refactoring of CvCaptureCAM_VFW class.
vbystricky [Mon, 21 Apr 2014 14:32:53 +0000 (18:32 +0400)]
Convert opencv border type to ipp border. Check supported border before call ipp function
vbystricky [Mon, 21 Apr 2014 13:26:03 +0000 (17:26 +0400)]
Fix error in call of ippResize
Elena Gvozdeva [Mon, 21 Apr 2014 11:20:59 +0000 (15:20 +0400)]
fixed
Roman Donchenko [Mon, 21 Apr 2014 12:47:35 +0000 (16:47 +0400)]
Merge remote-tracking branch 'origin/2.4' into merge-2.4
No conflicts! Amazing!
Elena Gvozdeva [Wed, 16 Apr 2014 14:09:46 +0000 (18:09 +0400)]
added ippiTrueDistanceTransform_8u32f_C1R
Elena Gvozdeva [Wed, 9 Apr 2014 13:03:06 +0000 (17:03 +0400)]
Added ippiDistanceTransform for cv::distanceTransform, maskSize=3,5
vbystricky [Mon, 21 Apr 2014 11:02:38 +0000 (15:02 +0400)]
Fix compile warnings
vbystricky [Mon, 21 Apr 2014 10:43:56 +0000 (14:43 +0400)]
Disable scharr in icv only configuration
vbystricky [Mon, 21 Apr 2014 10:19:25 +0000 (14:19 +0400)]
Fix setIppErrorStatus placement
Ilya Lavrenov [Mon, 14 Apr 2014 14:42:21 +0000 (18:42 +0400)]
cv::multiply
Ilya Lavrenov [Mon, 14 Apr 2014 10:49:43 +0000 (14:49 +0400)]
fixed warnings
Ilya Lavrenov [Sun, 13 Apr 2014 21:09:15 +0000 (01:09 +0400)]
cv::filterSpeckles
Ilya Lavrenov [Sun, 13 Apr 2014 15:49:15 +0000 (19:49 +0400)]
cv::cornerHarris
Ilya Lavrenov [Sun, 13 Apr 2014 14:15:41 +0000 (18:15 +0400)]
Mat::setTo(with mask)
Ilya Lavrenov [Sun, 13 Apr 2014 13:00:00 +0000 (17:00 +0400)]
Mat::setTo(Scalar::all(0))
Ilya Lavrenov [Sun, 13 Apr 2014 12:50:38 +0000 (16:50 +0400)]
Mat::copyTo
Ilya Lavrenov [Sun, 13 Apr 2014 12:44:37 +0000 (16:44 +0400)]
Mat::copyTo with mask
Ilya Lavrenov [Sun, 13 Apr 2014 12:19:34 +0000 (16:19 +0400)]
cv::flip inplace
Ilya Lavrenov [Sun, 13 Apr 2014 12:14:04 +0000 (16:14 +0400)]
cv::transpose inplace
Ilya Lavrenov [Sun, 13 Apr 2014 12:05:54 +0000 (16:05 +0400)]
cv::accumulate
Ilya Lavrenov [Sun, 13 Apr 2014 11:59:32 +0000 (15:59 +0400)]
cv::min/cv::max CV_64F
Ilya Lavrenov [Sat, 12 Apr 2014 11:40:26 +0000 (15:40 +0400)]
cv::Laplacian
vbystricky [Fri, 18 Apr 2014 11:13:34 +0000 (15:13 +0400)]
Add setIppErrorStatus()
vbystricky [Tue, 15 Apr 2014 12:20:18 +0000 (16:20 +0400)]
Fix error in code
vbystricky [Tue, 15 Apr 2014 09:08:02 +0000 (13:08 +0400)]
Add constant border fix call ipp function
vbystricky [Tue, 15 Apr 2014 06:00:08 +0000 (10:00 +0400)]
Fix warning
vbystricky [Mon, 14 Apr 2014 13:05:17 +0000 (17:05 +0400)]
Fix error
vbystricky [Mon, 14 Apr 2014 11:47:50 +0000 (15:47 +0400)]
Change Scharr filter to new ipp functions
Andrey Pavlenko [Fri, 18 Apr 2014 10:47:05 +0000 (14:47 +0400)]
Merge pull request #2622 from ilya-lavrenov:ipp_sort
Andrey Pavlenko [Fri, 18 Apr 2014 10:46:37 +0000 (14:46 +0400)]
Merge pull request #2625 from ilya-lavrenov:ipp_reduce
Ilya Lavrenov [Tue, 15 Apr 2014 14:29:53 +0000 (18:29 +0400)]
cv::reduce sum/avg
Ilya Lavrenov [Tue, 15 Apr 2014 13:43:06 +0000 (17:43 +0400)]
cv::reduce (min/max to single column)
Ilya Lavrenov [Tue, 15 Apr 2014 10:58:11 +0000 (14:58 +0400)]
added ippisFlip to cv::sort
Ilya Lavrenov [Tue, 15 Apr 2014 10:43:44 +0000 (14:43 +0400)]
cv:;sortIdx
Ilya Lavrenov [Mon, 14 Apr 2014 20:11:16 +0000 (00:11 +0400)]
cv::sort
Andrey Pavlenko [Fri, 18 Apr 2014 09:37:34 +0000 (13:37 +0400)]
Merge pull request #2628 from ilya-lavrenov:ipp_error_handling