StevenPuttemans
|
99475e2976
|
fixed wrong download link in tutorial
|
11 years ago |
thoinvil
|
e50ef2dab5
|
Bugfix #3668 removed the comment
|
11 years ago |
Vladislav Vinogradov
|
629461c836
|
fix output matrix allocation in cv::subtract
|
11 years ago |
Alexander Alekhin
|
df9aa8898d
|
icv: fix OpenCV Windows package
|
11 years ago |
Alexander Alekhin
|
35eb972e9a
|
fix compilation on MSVS 2010
|
11 years ago |
Alexander Alekhin
|
72e095b8a5
|
Merge pull request #2665 from ilya-lavrenov:ipp_filter2d
|
11 years ago |
Alexander Alekhin
|
07d5f56707
|
Merge pull request #2679 from alalek:ippicv_update
|
11 years ago |
Ilya Lavrenov
|
3ccaa5294e
|
added OpenCL RGB <-> Luv conversions
|
11 years ago |
Alexander Alekhin
|
9c780260c2
|
Merge pull request #2605 from akarsakov:ipp_min_eigen_val
|
11 years ago |
Alexander Alekhin
|
849228ac6a
|
Merge pull request #2684 from ElenaGvozdeva:ippiDFT
|
11 years ago |
Alexander Alekhin
|
9e47672b2b
|
Merge pull request #2658 from akarsakov:ipp_hough
|
11 years ago |
Alexander Alekhin
|
e2c7adc7c4
|
Merge pull request #2703 from jet47:subtract-create-dst-mat
|
11 years ago |
Alexander Alekhin
|
d54aa307fd
|
Merge pull request #2676 from ilya-lavrenov:ipp_gaussianblur
|
11 years ago |
Ilya Lavrenov
|
abf905154f
|
cv::fitler2D
|
11 years ago |
Ilya Lavrenov
|
1ad69aba35
|
changes sigma in perf tests
|
11 years ago |
Alexander Alekhin
|
0e1bf58195
|
Merge pull request #2634 from ElenaGvozdeva:ippiDCT
|
11 years ago |
Vladislav Vinogradov
|
4c66614e07
|
fix cv::subtract function:
call dst.create(...) before using it
|
11 years ago |
Alexander Alekhin
|
b1a28a52fa
|
Merge pull request #2693 from mvukad:bugfix_ippmorphop
|
11 years ago |
GregoryMorse
|
38db7a78df
|
WinRT core compatibility fixes
Update system.cpp
Update system.cpp
Update system.cpp
Update matching.cpp
Update matching.cpp
|
11 years ago |
GregoryMorse
|
b1443bc1bc
|
WinRT core compatibility fixes
Update system.cpp
Update system.cpp
Update ocl.cpp
Update matching.cpp
Update ocl.cpp
Update matching.cpp
|
11 years ago |
Thierry Hoinville
|
5efd2056f0
|
Bugfix #3668 in FilterEngine::apply(), use the ROI properly
|
11 years ago |
Alexander Karsakov
|
f6a8ac2f6c
|
Changed check condition in tests in case ipp disabled.
|
11 years ago |
Elena Gvozdeva
|
12279e2631
|
fixed
|
11 years ago |
Alexander Alekhin
|
01f31dc007
|
Merge pull request #2687 from ilya-lavrenov:tapi_norm_inf_234cn
|
11 years ago |
Elena Gvozdeva
|
e362c3fb38
|
fixed
|
11 years ago |
Alexander Alekhin
|
03b1d133df
|
Merge pull request #2660 from arkunze:pullreq/140423-filter2D
|
11 years ago |
Ievgen Khvedchenia
|
220de14077
|
Clean-up from the dead code
|
11 years ago |
PhilLab
|
4ffeb01cfd
|
Update solvepnp.cpp
Clarified assert message for allowed PnP flags
|
11 years ago |
Alexander Alekhin
|
e9be486534
|
Merge pull request #2694 from rokm:matlab
|
11 years ago |
Alexander Alekhin
|
787815fd00
|
Merge pull request #2619 from GregoryMorse:patch-3
|
11 years ago |
Alexander Alekhin
|
59cf62ad9e
|
Merge pull request #2636 from atrebbi:#3653
|
11 years ago |
Alexander Alekhin
|
87210690c2
|
Merge pull request #2678 from intbots:master
|
11 years ago |
Alexander Alekhin
|
f0d4ccc6cf
|
Merge pull request #2696 from PhilLab:2.4
|
11 years ago |
Alexander Alekhin
|
a5378186e5
|
Merge pull request #2688 from akarsakov:ipp_disable_resize_8u
|
11 years ago |
Alexander Alekhin
|
d9d9de75db
|
Merge pull request #2686 from vbystricky:ippicv_integral
|
11 years ago |
Alexander Alekhin
|
347d5b96f3
|
Merge pull request #2635 from akarsakov:gaussian_float_intel
|
11 years ago |
Alexander Karsakov
|
eda084e123
|
Used AutoBuffer instead ippsMalloc
|
11 years ago |
PhilLab
|
897d0a9aaf
|
Updated documentation: library names
updated the library names to OpenCV version 2.4.9
|
11 years ago |
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}"
|
11 years ago |
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();
|
11 years ago |
Rok Mandeljc
|
2d47dd7038
|
Matlab bindings: added missing compound type declarations from photo module
|
11 years ago |
Ievgen Khvedchenia
|
e7e00201f1
|
Enabled parallel processing of the nld_step_scalar function
|
11 years ago |
Ievgen Khvedchenia
|
9fc90f4069
|
Merged nldiffusion functions into one module with removal of duplicate functions
|
11 years ago |
Michael Vukadinovic
|
c1aee0c312
|
Fixed bug in IPPMorphOp function when looping over elements of the morphology kernel.
|
11 years ago |
1Hyena
|
dfdb09386f
|
Autotuned_index now prints all info into logger instead of couting it.
|
11 years ago |
Ievgen Khvedchenia
|
2df7242646
|
Prepare to merge KAZE and AKAZE nldiffusion_functions source files (work in progress).
|
11 years ago |
Ievgen Khvedchenia
|
30f73623ce
|
Replace runtime checks with assertions
|
11 years ago |
Ievgen Khvedchenia
|
3e51da38fb
|
Removed Feature_Suppression_Distance function that is not used anywhere.
|
11 years ago |
Alexander Alekhin
|
71f871fafd
|
replaced sanity check condition for stitching perf test
|
11 years ago |
Alexander Karsakov
|
4ebe76098e
|
Disabled IPP resize for CV_8U
|
11 years ago |