Vladislav Vinogradov
55a714c83b
fix cv::kmeans function
...
reshape input matrix, since the function works with data
as with [N x dims] matrix
11 years ago
Alexander Mordvintsev
dd67ea0210
find -> rindex
11 years ago
Alexander Karsakov
4612b4b827
Added clamp() for THRESH_TRUNC mode
11 years ago
Ilya Lavrenov
d16e0b377f
disabled IPP functions that slower than OpenCV
11 years ago
Ilya Lavrenov
f64dfeb222
fix for cv::norm (norm_inf)
11 years ago
Ievgen Khvedchenia
87972d0d7c
Fix "WARNING: Block quote ends without a blank line"
11 years ago
Kevin Mitchell
63e508abd2
doc: update/clarify behaviour of mask in floodFill
...
Clarify how the mask parameter is set on output and how this is
affected by the flags parameter.
resolves Feature #2942
11 years ago
StevenPuttemans
006956c324
Fixing as suggested in bug 2626, made naming same for both C, C++ and python API
11 years ago
1Hyena
6c118ebc51
Changed ostringstream to ostream for new print_params and added the old
...
version of print_params for backwards compatibility.
11 years ago
StevenPuttemans
a0a8fb4fd9
fixed bug 2626
11 years ago
StevenPuttemans
e96de8821c
bug 2740 added fix
11 years ago
StevenPuttemans
b382984810
fix bug 3252
11 years ago
StevenPuttemans
2b4241c10b
fixed bug 3484
11 years ago
Ilya Lavrenov
1e5694e082
heuristic for Intel
11 years ago
Alexander Mordvintsev
120b3a1e77
Work on python wrapped generation automation:
...
- all parsed headers are included into "cv2.cpp" with "pyopencv_generated_include.h"
- types starting with "Ptr_" converted to "Ptr<...>" form (avoids many typedefs in "cv2.cpp")
11 years ago
Alexander Alekhin
1f638a3e5b
icv: enable functions
11 years ago
Ilya Lavrenov
e2558e5ee5
increased eps to pass tests
11 years ago
Luis Zarrabeitia
bb5a22c504
highgui: fix segfault on CvCapture_GStreamer::retrieveFrame
...
CvCapture_GStreamer::retrieveFrame assumes that RGB videos are 24BPP.
This is not necesarily the case, unless we explicitly tell GStreamer
that we want 24BPP RGB streams.
Adding bpp=(int)24 to the appsink caps.
11 years ago
Ievgen Khvedchenia
03db61b33b
FixFix documentation warnings
11 years ago
Ievgen Khvedchenia
029a8c443a
Remove GSURF descriptor from KAZE algorithm
11 years ago
Ievgen Khvedchenia
a068ccbf51
Fix "Title underline too short" warning
11 years ago
Ievgen Khvedchenia
616c348536
Fix documentation warnings
11 years ago
Ievgen Khvedchenia
3a8e15fad9
Fix documentation warnings
11 years ago
Ievgen Khvedchenia
c4e49463a9
Initial commit of the KAZE & AKAZE docs
11 years ago
Ievgen Khvedchenia
b42c268164
Temporary remove of CV_WRAP
11 years ago
Ievgen Khvedchenia
1a5fcd715d
Refactor of KAZE and AKAZE:
...
1) Clean-up from the unused code
2) Remove of SURF extraction method
3) Enabled threading for KAZE extraction
4) Exposed new properties for runtime configuration
11 years ago
Alexander Karsakov
4e7f62fd24
Fixed ipp check for cornerMinEigenVal
11 years ago
Ilya Lavrenov
11b01cd8b9
added ipp threshold inplace
11 years ago
Ilya Lavrenov
19a2495067
fixed IPP related warnings
11 years ago
Vladislav Vinogradov
77275031ab
finally fix cv::subtract
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
35eb972e9a
fix compilation on MSVS 2010
11 years ago
Ilya Lavrenov
3ccaa5294e
added OpenCL RGB <-> Luv conversions
11 years ago
Ilya Lavrenov
abf905154f
cv::fitler2D
11 years ago
Ilya Lavrenov
1ad69aba35
changes sigma in perf tests
11 years ago
Vladislav Vinogradov
4c66614e07
fix cv::subtract function:
...
call dst.create(...) before using it
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
Elena Gvozdeva
e362c3fb38
fixed
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 Karsakov
eda084e123
Used AutoBuffer instead ippsMalloc
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