Alexander Alekhin
|
d54aa307fd
|
Merge pull request #2676 from ilya-lavrenov:ipp_gaussianblur
|
2014-05-07 16:49:59 +04:00 |
|
Ilya Lavrenov
|
abf905154f
|
cv::fitler2D
|
2014-05-07 15:47:10 +04:00 |
|
Ilya Lavrenov
|
1ad69aba35
|
changes sigma in perf tests
|
2014-05-07 14:59:03 +04:00 |
|
Alexander Alekhin
|
0e1bf58195
|
Merge pull request #2634 from ElenaGvozdeva:ippiDCT
|
2014-05-07 14:49:13 +04:00 |
|
Vladislav Vinogradov
|
4c66614e07
|
fix cv::subtract function:
call dst.create(...) before using it
|
2014-05-07 13:15:19 +04:00 |
|
Alexander Alekhin
|
b1a28a52fa
|
Merge pull request #2693 from mvukad:bugfix_ippmorphop
|
2014-05-07 13:15:09 +04:00 |
|
GregoryMorse
|
38db7a78df
|
WinRT core compatibility fixes
Update system.cpp
Update system.cpp
Update system.cpp
Update matching.cpp
Update matching.cpp
|
2014-05-07 06:17:37 +08:00 |
|
GregoryMorse
|
b1443bc1bc
|
WinRT core compatibility fixes
Update system.cpp
Update system.cpp
Update ocl.cpp
Update matching.cpp
Update ocl.cpp
Update matching.cpp
|
2014-05-07 06:15:54 +08:00 |
|
Thierry Hoinville
|
5efd2056f0
|
Bugfix #3668 in FilterEngine::apply(), use the ROI properly
|
2014-05-06 15:33:07 +02:00 |
|
Alexander Karsakov
|
f6a8ac2f6c
|
Changed check condition in tests in case ipp disabled.
|
2014-05-06 15:24:54 +04:00 |
|
Elena Gvozdeva
|
12279e2631
|
fixed
|
2014-05-06 14:49:03 +04:00 |
|
Alexander Alekhin
|
01f31dc007
|
Merge pull request #2687 from ilya-lavrenov:tapi_norm_inf_234cn
|
2014-05-06 13:27:03 +04:00 |
|
Elena Gvozdeva
|
e362c3fb38
|
fixed
|
2014-05-06 13:09:45 +04:00 |
|
Alexander Alekhin
|
03b1d133df
|
Merge pull request #2660 from arkunze:pullreq/140423-filter2D
|
2014-05-06 12:59:03 +04:00 |
|
Ievgen Khvedchenia
|
220de14077
|
Clean-up from the dead code
|
2014-05-05 21:48:54 +03:00 |
|
PhilLab
|
4ffeb01cfd
|
Update solvepnp.cpp
Clarified assert message for allowed PnP flags
|
2014-05-05 17:44:59 +02:00 |
|
Alexander Alekhin
|
e9be486534
|
Merge pull request #2694 from rokm:matlab
|
2014-05-05 19:24:07 +04:00 |
|
Alexander Alekhin
|
787815fd00
|
Merge pull request #2619 from GregoryMorse:patch-3
|
2014-05-05 18:00:40 +04:00 |
|
Alexander Alekhin
|
59cf62ad9e
|
Merge pull request #2636 from atrebbi:#3653
|
2014-05-05 18:00:18 +04:00 |
|
Alexander Alekhin
|
87210690c2
|
Merge pull request #2678 from intbots:master
|
2014-05-05 17:55:14 +04:00 |
|
Alexander Alekhin
|
f0d4ccc6cf
|
Merge pull request #2696 from PhilLab:2.4
|
2014-05-05 17:08:48 +04:00 |
|
Alexander Alekhin
|
a5378186e5
|
Merge pull request #2688 from akarsakov:ipp_disable_resize_8u
|
2014-05-05 15:21:13 +04:00 |
|
Alexander Alekhin
|
d9d9de75db
|
Merge pull request #2686 from vbystricky:ippicv_integral
|
2014-05-05 15:20:47 +04:00 |
|
Alexander Alekhin
|
347d5b96f3
|
Merge pull request #2635 from akarsakov:gaussian_float_intel
|
2014-05-05 15:20:20 +04:00 |
|
Alexander Karsakov
|
eda084e123
|
Used AutoBuffer instead ippsMalloc
|
2014-05-05 14:40:59 +04:00 |
|
PhilLab
|
897d0a9aaf
|
Updated documentation: library names
updated the library names to OpenCV version 2.4.9
|
2014-05-05 12:16:48 +02:00 |
|
Rok Mandeljc
|
c35fd55b0e
|
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}"
|
2014-05-03 17:37:48 +02:00 |
|
Rok Mandeljc
|
fa075c50a1
|
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();
|
2014-05-03 17:37:48 +02:00 |
|
Rok Mandeljc
|
2d47dd7038
|
Matlab bindings: added missing compound type declarations from photo module
|
2014-05-03 17:37:47 +02:00 |
|
Ievgen Khvedchenia
|
e7e00201f1
|
Enabled parallel processing of the nld_step_scalar function
|
2014-05-02 14:07:30 +03:00 |
|
Ievgen Khvedchenia
|
9fc90f4069
|
Merged nldiffusion functions into one module with removal of duplicate functions
|
2014-05-01 22:24:15 +03:00 |
|
Michael Vukadinovic
|
c1aee0c312
|
Fixed bug in IPPMorphOp function when looping over elements of the morphology kernel.
|
2014-05-01 11:52:49 -07:00 |
|
1Hyena
|
dfdb09386f
|
Autotuned_index now prints all info into logger instead of couting it.
|
2014-05-01 20:55:49 +03:00 |
|
Ievgen Khvedchenia
|
2df7242646
|
Prepare to merge KAZE and AKAZE nldiffusion_functions source files (work in progress).
|
2014-05-01 18:27:24 +03:00 |
|
Ievgen Khvedchenia
|
30f73623ce
|
Replace runtime checks with assertions
|
2014-05-01 18:24:13 +03:00 |
|
Ievgen Khvedchenia
|
3e51da38fb
|
Removed Feature_Suppression_Distance function that is not used anywhere.
|
2014-05-01 10:58:34 +03:00 |
|
Alexander Alekhin
|
71f871fafd
|
replaced sanity check condition for stitching perf test
|
2014-04-30 18:02:06 +04:00 |
|
Alexander Karsakov
|
4ebe76098e
|
Disabled IPP resize for CV_8U
|
2014-04-30 17:28:35 +04:00 |
|
Ilya Lavrenov
|
c80faff42f
|
added cn>1 support to cv::norm (NORM_INF)
|
2014-04-30 14:59:37 +04:00 |
|
vbystricky
|
c9103730b6
|
Disable ipp integral in IPPICV version
|
2014-04-30 12:55:34 +04:00 |
|
Ievgen Khvedchenia
|
ab1ef08f0e
|
Rename file config.h to KAZEConfig.h
|
2014-04-29 22:17:18 +03:00 |
|
Ievgen Khvedchenia
|
4509fe55c2
|
Clean-up of getters/setters that are not needed by OpenCV
|
2014-04-29 21:39:27 +03:00 |
|
Ievgen Khvedchenia
|
2daa14e3c7
|
Clean-up from dead code.
|
2014-04-29 21:07:53 +03:00 |
|
Alexander Alekhin
|
e8d3ebecc7
|
fix IPPDerivSobel condition
|
2014-04-29 15:36:45 +04:00 |
|
Alexander Alekhin
|
b62e59aac0
|
icv: enable functions
|
2014-04-29 15:36:43 +04:00 |
|
Alexander Alekhin
|
5658ba0002
|
icv: update package
|
2014-04-29 15:35:27 +04:00 |
|
Alexander Alekhin
|
dacf63a888
|
Merge pull request #2682 from ElenaGvozdeva:ippiDFT
|
2014-04-29 15:34:01 +04:00 |
|
Alexander Alekhin
|
0f22df2b0d
|
Merge pull request #2667 from akarsakov:ipp_otsu
|
2014-04-29 15:15:33 +04:00 |
|
Alexander Alekhin
|
06746ba645
|
Merge pull request #2677 from ilya-lavrenov:ipp_compilation
|
2014-04-29 12:26:49 +04:00 |
|
Elena Gvozdeva
|
043b917c7d
|
IPP: cv::dft fixed
|
2014-04-29 12:23:23 +04:00 |
|