profile/ivi/opencv.git
10 years agoMatlab bindings: CMakeLists.txt: use "${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}...
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}"

10 years agoMatlab bindings: fixed the functional template to perform an explicit cast to the...
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();

10 years agoMatlab bindings: added missing compound type declarations from photo module
Rok Mandeljc [Mon, 28 Apr 2014 09:09:10 +0000 (11:09 +0200)]
Matlab bindings: added missing compound type declarations from photo module

10 years agoMerge pull request #2682 from ElenaGvozdeva:ippiDFT
Alexander Alekhin [Tue, 29 Apr 2014 11:34:01 +0000 (15:34 +0400)]
Merge pull request #2682 from ElenaGvozdeva:ippiDFT

10 years agoMerge pull request #2667 from akarsakov:ipp_otsu
Alexander Alekhin [Tue, 29 Apr 2014 11:15:32 +0000 (15:15 +0400)]
Merge pull request #2667 from akarsakov:ipp_otsu

10 years agoMerge pull request #2677 from ilya-lavrenov:ipp_compilation
Alexander Alekhin [Tue, 29 Apr 2014 08:26:48 +0000 (12:26 +0400)]
Merge pull request #2677 from ilya-lavrenov:ipp_compilation

10 years agoIPP: cv::dft fixed
Elena Gvozdeva [Tue, 29 Apr 2014 08:23:23 +0000 (12:23 +0400)]
IPP: cv::dft fixed

10 years agoMerge pull request #2653 from alalek:ipp_lut
Alexander Alekhin [Mon, 28 Apr 2014 11:15:11 +0000 (15:15 +0400)]
Merge pull request #2653 from alalek:ipp_lut

10 years agoMerge pull request #2654 from ElenaGvozdeva:ipp_DFT
Alexander Alekhin [Mon, 28 Apr 2014 11:14:40 +0000 (15:14 +0400)]
Merge pull request #2654 from ElenaGvozdeva:ipp_DFT

10 years agoMerge pull request #2674 from akarsakov:ocl_hog_fix_epsilon
Alexander Alekhin [Mon, 28 Apr 2014 11:06:05 +0000 (15:06 +0400)]
Merge pull request #2674 from akarsakov:ocl_hog_fix_epsilon

10 years agofixed compilation
Ilya Lavrenov [Mon, 28 Apr 2014 10:04:41 +0000 (14:04 +0400)]
fixed compilation

10 years agoMerge pull request #2675 from SpecLad:merge-2.4
Roman Donchenko [Mon, 28 Apr 2014 09:51:44 +0000 (13:51 +0400)]
Merge pull request #2675 from SpecLad:merge-2.4

10 years agoMerge pull request #2668 from vbystricky:perf_TransformECC
Roman Donchenko [Mon, 28 Apr 2014 09:50:49 +0000 (13:50 +0400)]
Merge pull request #2668 from vbystricky:perf_TransformECC

10 years agoMerge remote-tracking branch 'origin/2.4' into merge-2.4
Roman Donchenko [Mon, 28 Apr 2014 08:08:21 +0000 (12:08 +0400)]
Merge remote-tracking branch 'origin/2.4' into merge-2.4

10 years agoChanged epsilon for hog test, because hog detector is sensible to resize accuracy.
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.

10 years agoMerge pull request #2659 from adrians:docs_pull_1
Roman Donchenko [Mon, 28 Apr 2014 07:36:12 +0000 (11:36 +0400)]
Merge pull request #2659 from adrians:docs_pull_1

10 years agoAdded setIppErrorStatus()
Alexander Karsakov [Fri, 25 Apr 2014 16:24:37 +0000 (20:24 +0400)]
Added setIppErrorStatus()

10 years agoFix problem with sanity check of transform ecc with ipp resize
vbystricky [Fri, 25 Apr 2014 13:33:38 +0000 (17:33 +0400)]
Fix problem with sanity check of transform ecc with ipp resize

10 years agoAdded ippiComputeThreshold_Otsu to cv::threshold
Alexander Karsakov [Fri, 25 Apr 2014 13:31:45 +0000 (17:31 +0400)]
Added ippiComputeThreshold_Otsu to cv::threshold

10 years agoipp: added LUT optimization
Alexander Alekhin [Tue, 22 Apr 2014 15:52:37 +0000 (19:52 +0400)]
ipp: added LUT optimization

10 years agoAdded parallel version for DFT_ROWS
Elena Gvozdeva [Wed, 23 Apr 2014 14:17:50 +0000 (18:17 +0400)]
Added parallel version for DFT_ROWS

10 years agoMerge pull request #2656 from ilya-lavrenov:ipp_copymakeborder
Alexander Alekhin [Thu, 24 Apr 2014 16:30:34 +0000 (20:30 +0400)]
Merge pull request #2656 from ilya-lavrenov:ipp_copymakeborder

10 years agoMerge pull request #2662 from vbystricky:ipp_MatchTempl
Alexander Alekhin [Thu, 24 Apr 2014 16:25:42 +0000 (20:25 +0400)]
Merge pull request #2662 from vbystricky:ipp_MatchTempl

10 years agocv::copyMakeBorder
Ilya Lavrenov [Wed, 23 Apr 2014 10:18:20 +0000 (14:18 +0400)]
cv::copyMakeBorder

10 years agoFix epsilon calculation for sanity check in x32 build
vbystricky [Thu, 24 Apr 2014 06:48:32 +0000 (10:48 +0400)]
Fix epsilon calculation for sanity check in x32 build

10 years agoDocumentation - minor fix-ups
Adrian Stratulat [Wed, 23 Apr 2014 17:30:27 +0000 (17:30 +0000)]
Documentation - minor fix-ups

10 years agoMerge pull request #2651 from ilya-lavrenov:ipp_minmaxidx_3cn
Alexander Alekhin [Wed, 23 Apr 2014 16:06:55 +0000 (20:06 +0400)]
Merge pull request #2651 from ilya-lavrenov:ipp_minmaxidx_3cn

10 years agoMerge pull request #2655 from akarsakov:ipp_fix_pyramid
Andrey Pavlenko [Wed, 23 Apr 2014 12:27:33 +0000 (16:27 +0400)]
Merge pull request #2655 from akarsakov:ipp_fix_pyramid

10 years agoIPP: CV::dft
Elena Gvozdeva [Wed, 23 Apr 2014 07:32:12 +0000 (11:32 +0400)]
IPP: CV::dft

10 years agoMerge pull request #2620 from ilya-lavrenov:ipp_integration
Andrey Pavlenko [Wed, 23 Apr 2014 11:12:44 +0000 (15:12 +0400)]
Merge pull request #2620 from ilya-lavrenov:ipp_integration

10 years agoMerge pull request #2646 from ilya-lavrenov:ipp_remap
Alexander Alekhin [Wed, 23 Apr 2014 07:51:01 +0000 (11:51 +0400)]
Merge pull request #2646 from ilya-lavrenov:ipp_remap

10 years agoMerge pull request #2647 from vbystricky:ipp_norm
Alexander Alekhin [Wed, 23 Apr 2014 07:50:12 +0000 (11:50 +0400)]
Merge pull request #2647 from vbystricky:ipp_norm

10 years agoMerge pull request #2649 from ilya-lavrenov:gabor_eps
Alexander Alekhin [Wed, 23 Apr 2014 07:49:42 +0000 (11:49 +0400)]
Merge pull request #2649 from ilya-lavrenov:gabor_eps

10 years agoAdded checking destination size for pyrUp, pyrDown.
Alexander Karsakov [Wed, 23 Apr 2014 07:47:15 +0000 (11:47 +0400)]
Added checking destination size for pyrUp, pyrDown.

10 years agocv::minMaxIdx for cn > 1
Ilya Lavrenov [Tue, 22 Apr 2014 15:19:38 +0000 (19:19 +0400)]
cv::minMaxIdx for cn > 1

10 years agoMerge pull request #2648 from ilya-lavrenov:ipp_dist
Alexander Alekhin [Tue, 22 Apr 2014 15:00:01 +0000 (19:00 +0400)]
Merge pull request #2648 from ilya-lavrenov:ipp_dist

10 years agoMerge pull request #2627 from akarsakov:ipp_pyramids
Andrey Pavlenko [Tue, 22 Apr 2014 13:19:27 +0000 (17:19 +0400)]
Merge pull request #2627 from akarsakov:ipp_pyramids

10 years agochanges eps
Ilya Lavrenov [Tue, 22 Apr 2014 11:49:17 +0000 (15:49 +0400)]
changes eps

10 years agoFix error in arguments of ipp function
vbystricky [Tue, 22 Apr 2014 11:07:03 +0000 (15:07 +0400)]
Fix error in arguments of ipp function

10 years agoMerge pull request #2618 from vbystricky:ipp_Scharr
Alexander Alekhin [Tue, 22 Apr 2014 11:02:12 +0000 (15:02 +0400)]
Merge pull request #2618 from vbystricky:ipp_Scharr

10 years agofix for IPP ICV
Ilya Lavrenov [Tue, 22 Apr 2014 10:55:28 +0000 (14:55 +0400)]
fix for IPP ICV

10 years agofixes
Ilya Lavrenov [Fri, 18 Apr 2014 10:25:38 +0000 (14:25 +0400)]
fixes

10 years agoFix error in ipp function call
vbystricky [Tue, 22 Apr 2014 10:35:27 +0000 (14:35 +0400)]
Fix error in ipp function call

10 years agocv::remap
Ilya Lavrenov [Tue, 15 Apr 2014 19:43:14 +0000 (23:43 +0400)]
cv::remap

10 years agoMerge pull request #2645 from vbystricky:ipp_Convert
Alexander Alekhin [Tue, 22 Apr 2014 09:45:31 +0000 (13:45 +0400)]
Merge pull request #2645 from vbystricky:ipp_Convert

10 years agoChange test conditions
vbystricky [Tue, 22 Apr 2014 09:27:20 +0000 (13:27 +0400)]
Change test conditions

10 years agoMerge pull request #2640 from a-wi:2.4
Roman Donchenko [Tue, 22 Apr 2014 08:01:47 +0000 (12:01 +0400)]
Merge pull request #2640 from a-wi:2.4

10 years agoMerge pull request #2641 from SpecLad:merge-2.4
Roman Donchenko [Tue, 22 Apr 2014 08:01:03 +0000 (12:01 +0400)]
Merge pull request #2641 from SpecLad:merge-2.4

10 years agoMerge pull request #2643 from vbystricky:ipp_GaussianBorder
Andrey Pavlenko [Tue, 22 Apr 2014 07:55:05 +0000 (11:55 +0400)]
Merge pull request #2643 from vbystricky:ipp_GaussianBorder

10 years agoMerge pull request #2642 from vbystricky:ipp_resize
Andrey Pavlenko [Tue, 22 Apr 2014 07:53:25 +0000 (11:53 +0400)]
Merge pull request #2642 from vbystricky:ipp_resize

10 years agoMerge pull request #2624 from ElenaGvozdeva:ipp_DistanceTransform
Andrey Pavlenko [Tue, 22 Apr 2014 07:48:25 +0000 (11:48 +0400)]
Merge pull request #2624 from ElenaGvozdeva:ipp_DistanceTransform

10 years agoFix call of ippiConvert.
vbystricky [Tue, 22 Apr 2014 06:50:35 +0000 (10:50 +0400)]
Fix call of ippiConvert.

10 years agoMerge pull request #2612 from grkutty:pullreq/140319-bilateral-b
Andrey Pavlenko [Tue, 22 Apr 2014 05:32:38 +0000 (09:32 +0400)]
Merge pull request #2612 from grkutty:pullreq/140319-bilateral-b

10 years agoFix for issue #3645 (http://code.opencv.org/issues/3645).
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.

10 years agoConvert opencv border type to ipp border. Check supported border before call ipp...
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

10 years agoFix error in call of ippResize
vbystricky [Mon, 21 Apr 2014 13:26:03 +0000 (17:26 +0400)]
Fix error in call of ippResize

10 years agofixed
Elena Gvozdeva [Mon, 21 Apr 2014 11:20:59 +0000 (15:20 +0400)]
fixed

10 years agoMerge remote-tracking branch 'origin/2.4' into merge-2.4
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!

10 years agoadded ippiTrueDistanceTransform_8u32f_C1R
Elena Gvozdeva [Wed, 16 Apr 2014 14:09:46 +0000 (18:09 +0400)]
added ippiTrueDistanceTransform_8u32f_C1R

10 years agoAdded ippiDistanceTransform for cv::distanceTransform, maskSize=3,5
Elena Gvozdeva [Wed, 9 Apr 2014 13:03:06 +0000 (17:03 +0400)]
Added ippiDistanceTransform for cv::distanceTransform, maskSize=3,5

10 years agoFix compile warnings
vbystricky [Mon, 21 Apr 2014 11:02:38 +0000 (15:02 +0400)]
Fix compile warnings

10 years agoDisable scharr in icv only configuration
vbystricky [Mon, 21 Apr 2014 10:43:56 +0000 (14:43 +0400)]
Disable scharr in icv only configuration

10 years agoFix setIppErrorStatus placement
vbystricky [Mon, 21 Apr 2014 10:19:25 +0000 (14:19 +0400)]
Fix setIppErrorStatus placement

10 years agocv::multiply
Ilya Lavrenov [Mon, 14 Apr 2014 14:42:21 +0000 (18:42 +0400)]
cv::multiply

10 years agofixed warnings
Ilya Lavrenov [Mon, 14 Apr 2014 10:49:43 +0000 (14:49 +0400)]
fixed warnings

10 years agocv::filterSpeckles
Ilya Lavrenov [Sun, 13 Apr 2014 21:09:15 +0000 (01:09 +0400)]
cv::filterSpeckles

10 years agocv::cornerHarris
Ilya Lavrenov [Sun, 13 Apr 2014 15:49:15 +0000 (19:49 +0400)]
cv::cornerHarris

10 years agoMat::setTo(with mask)
Ilya Lavrenov [Sun, 13 Apr 2014 14:15:41 +0000 (18:15 +0400)]
Mat::setTo(with mask)

10 years agoMat::setTo(Scalar::all(0))
Ilya Lavrenov [Sun, 13 Apr 2014 13:00:00 +0000 (17:00 +0400)]
Mat::setTo(Scalar::all(0))

10 years agoMat::copyTo
Ilya Lavrenov [Sun, 13 Apr 2014 12:50:38 +0000 (16:50 +0400)]
Mat::copyTo

10 years agoMat::copyTo with mask
Ilya Lavrenov [Sun, 13 Apr 2014 12:44:37 +0000 (16:44 +0400)]
Mat::copyTo with mask

10 years agocv::flip inplace
Ilya Lavrenov [Sun, 13 Apr 2014 12:19:34 +0000 (16:19 +0400)]
cv::flip inplace

10 years agocv::transpose inplace
Ilya Lavrenov [Sun, 13 Apr 2014 12:14:04 +0000 (16:14 +0400)]
cv::transpose inplace

10 years agocv::accumulate
Ilya Lavrenov [Sun, 13 Apr 2014 12:05:54 +0000 (16:05 +0400)]
cv::accumulate

10 years agocv::min/cv::max CV_64F
Ilya Lavrenov [Sun, 13 Apr 2014 11:59:32 +0000 (15:59 +0400)]
cv::min/cv::max CV_64F

10 years agocv::Laplacian
Ilya Lavrenov [Sat, 12 Apr 2014 11:40:26 +0000 (15:40 +0400)]
cv::Laplacian

10 years agoAdd setIppErrorStatus()
vbystricky [Fri, 18 Apr 2014 11:13:34 +0000 (15:13 +0400)]
Add setIppErrorStatus()

10 years agoFix error in code
vbystricky [Tue, 15 Apr 2014 12:20:18 +0000 (16:20 +0400)]
Fix error in code

10 years agoAdd constant border fix call ipp function
vbystricky [Tue, 15 Apr 2014 09:08:02 +0000 (13:08 +0400)]
Add constant border fix call ipp function

10 years agoFix warning
vbystricky [Tue, 15 Apr 2014 06:00:08 +0000 (10:00 +0400)]
Fix warning

10 years agoFix error
vbystricky [Mon, 14 Apr 2014 13:05:17 +0000 (17:05 +0400)]
Fix error

10 years agoChange Scharr filter to new ipp functions
vbystricky [Mon, 14 Apr 2014 11:47:50 +0000 (15:47 +0400)]
Change Scharr filter to new ipp functions

10 years agoMerge pull request #2622 from ilya-lavrenov:ipp_sort
Andrey Pavlenko [Fri, 18 Apr 2014 10:47:05 +0000 (14:47 +0400)]
Merge pull request #2622 from ilya-lavrenov:ipp_sort

10 years agoMerge pull request #2625 from ilya-lavrenov:ipp_reduce
Andrey Pavlenko [Fri, 18 Apr 2014 10:46:37 +0000 (14:46 +0400)]
Merge pull request #2625 from ilya-lavrenov:ipp_reduce

10 years agocv::reduce sum/avg
Ilya Lavrenov [Tue, 15 Apr 2014 14:29:53 +0000 (18:29 +0400)]
cv::reduce sum/avg

10 years agocv::reduce (min/max to single column)
Ilya Lavrenov [Tue, 15 Apr 2014 13:43:06 +0000 (17:43 +0400)]
cv::reduce (min/max to single column)

10 years agoadded ippisFlip to cv::sort
Ilya Lavrenov [Tue, 15 Apr 2014 10:58:11 +0000 (14:58 +0400)]
added ippisFlip to cv::sort

10 years agocv:;sortIdx
Ilya Lavrenov [Tue, 15 Apr 2014 10:43:44 +0000 (14:43 +0400)]
cv:;sortIdx

10 years agocv::sort
Ilya Lavrenov [Mon, 14 Apr 2014 20:11:16 +0000 (00:11 +0400)]
cv::sort

10 years agoMerge pull request #2628 from ilya-lavrenov:ipp_error_handling
Andrey Pavlenko [Fri, 18 Apr 2014 09:37:34 +0000 (13:37 +0400)]
Merge pull request #2628 from ilya-lavrenov:ipp_error_handling

10 years agoAdded setIppErrorStatus
Alexander Karsakov [Fri, 18 Apr 2014 05:04:25 +0000 (09:04 +0400)]
Added setIppErrorStatus

10 years agoFixed sanity check for integer type
Alexander Karsakov [Thu, 17 Apr 2014 15:02:56 +0000 (19:02 +0400)]
Fixed sanity check for integer type

10 years agocmd option
Ilya Lavrenov [Thu, 17 Apr 2014 11:21:30 +0000 (15:21 +0400)]
cmd option

10 years agofixes in imgproc
Ilya Lavrenov [Wed, 16 Apr 2014 19:35:39 +0000 (23:35 +0400)]
fixes in imgproc

10 years agoMerge pull request #2629 from maksqwe:unused_fix
Roman Donchenko [Thu, 17 Apr 2014 09:02:35 +0000 (13:02 +0400)]
Merge pull request #2629 from maksqwe:unused_fix

10 years agofixed some errors
Ilya Lavrenov [Wed, 16 Apr 2014 15:45:35 +0000 (19:45 +0400)]
fixed some errors

10 years agoadded status check
Ilya Lavrenov [Wed, 16 Apr 2014 15:23:44 +0000 (19:23 +0400)]
added status check

10 years agoverbose errors
Ilya Lavrenov [Wed, 16 Apr 2014 14:50:23 +0000 (18:50 +0400)]
verbose errors

10 years agofirst attemp
Ilya Lavrenov [Wed, 16 Apr 2014 11:34:18 +0000 (15:34 +0400)]
first attemp

10 years agoremove unused variables in OCL_PERF_TEST_P()
Maks Naumov [Wed, 16 Apr 2014 21:19:04 +0000 (00:19 +0300)]
remove unused variables in OCL_PERF_TEST_P()