Bovaz
7be3d3ab2c
sqrtf to std::sqrt
9 years ago
Matteo Piovanelli
216baf5b11
Speedup of arcLength
...
By my tests, this version of cv::arcLength is almost 10% faster than the
one using a buffer it replaces.
9 years ago
Lorena García
33f77774c5
Hit&Miss morphological operation
9 years ago
Pavel Vlasov
40b2dfae09
Fix for filter2D and IPP < 900
9 years ago
Aman Verma
411be4fde8
Fix for #5481 , removing repeated/useless assignment in contours.cpp
9 years ago
Pavel Vlasov
89eee6ca99
Fixes for IPP integration:
...
dotProd_16s - disabled for IPP 9.0.0;
filter2D - fixed kernel preparation;
morphology - conditions fix and disabled FilterMin and FilterMax for IPP 9.0.0;
GaussianBlur - disabled for CV_8UC1 due to buffer overflow;
integral - disabled for IPP 9.0.0;
IppAutoBuffer class was added;
9 years ago
berak
f2decec3e8
fix zero length std::string in putText()
9 years ago
Aman Verma
dff7037156
Adding fix for issue 5451 "putText fails with empty std::string"
9 years ago
StevenPuttemans
587dca9b1c
adding markers to OpenCV
9 years ago
Pavel Vlasov
e837d69f8f
IPPInitSingelton was added to contain IPP related global variables;
...
OPENCV_IPP env var now allows to select IPP architecture level for IPP9+;
IPP initialization logic was unified across modules;
9 years ago
Pavel Vlasov
62854dcc0d
Enables support of IPP 9.0.0;
...
HAVE_IPP_ICV_ONLY will be undefined if OpenCV was linked against ICV packet from IPP9 or greater. ICV9+ packets will be aligned with IPP in OpenCV APIs
This will ease code management between IPP and ICV
9 years ago
Pavel Vlasov
14b006e808
IPP_VERSION_X100 was changed to:
...
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE
to manage changes between updates more easily.
IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;
9 years ago
Pavel Vlasov
2177c7c5a8
Some IPP functions were encapsulated;
...
Minor changes to IPP implementations;
9 years ago
Vitaly Tuzov
4a0152c731
Resize area result verification moved to the separate function
...
fix position of assert expected/actual parameter
9 years ago
Vitaly Tuzov
7d245e0f29
Added more resize_area tests to ensure right rounding behavior for half and quarter downscaling
9 years ago
a-andre
a14e524b32
fix documentation builder warnings
9 years ago
Ilya Lavrenov
d28e6c9b36
fixed memory leak caused by illegal memory access
...
(cherry picked from commit 4722b2d0e5
)
9 years ago
Ilya Lavrenov
c16f465ff5
fixed "Conditional jump or move depends on uninitialised value" warning
...
(cherry picked from commit f100cdb6d4
)
9 years ago
Ilya Lavrenov
16bcc30e42
typo
...
(cherry picked from commit 793bdaada7
)
9 years ago
Ilya Lavrenov
08e38e9ff9
fixed memory leaks in warpAffine tests
...
(cherry picked from commit b70e27e076
)
9 years ago
Ilya Lavrenov
ba3b902da7
fixed memory leaks in floodfill tests
...
(cherry picked from commit d1b882ddcf
)
9 years ago
Ilya Lavrenov
bf94e6a91c
fixed memory leaks in cvtyuv tests
...
(cherry picked from commit b2489d31d6
)
9 years ago
Philip Salvaggio
fcf971bded
Improved documentation for connectedComponentsWithStats.
10 years ago
Ilya Lavrenov
d81a0df489
fixed memory leak caused by illegal memory access
10 years ago
Ilya Lavrenov
e7ac52d17a
fixed "Conditional jump or move depends on uninitialised value" warning
10 years ago
Ilya Lavrenov
7e26cf569f
typo
10 years ago
Ilya Lavrenov
5547398786
fixed memory leaks in warpAffine tests
10 years ago
Ilya Lavrenov
7eba9055e0
fixed memory leaks in floodfill tests
10 years ago
Ilya Lavrenov
2a8ef1d065
fixed memory leaks in cvtyuv tests
10 years ago
Ilya Lavrenov
11981c31f0
fixed valgrind warning in polylines
10 years ago
Tsukasa Sugiura
cd13b30fde
Fix LineAA in case of 4 channel
...
Fix bug when enter 4 channel image to LineAA function.
10 years ago
Roman Donchenko
e1be6d0888
Refactor a section of icvRotatingCalipers to work around a GCC bug
...
https://bugs.launchpad.net/ubuntu/+source/gcc-4.9/+bug/1474304
10 years ago
Suleyman TURKMEN
c63f443bba
Update drawing.cpp
...
https://github.com/Itseez/opencv/issues/4791
10 years ago
Maksim Shabunin
771af4f32d
Some changes to support mingw-w64
...
- IPP is disabled by default when compiler is mingw (couldn't make it
work)
- fixed some warnings
- fixed some `__GNUC__` version checks (for correctness and convenience)
- removed UTF-8 BOM from hough.cpp (fixes #5253 )
10 years ago
Suleyman TURKMEN
f660461bb3
documentation patch
10 years ago
Lorena García
9d01818e8a
Small update of Colormap documentation
...
Small change in documentation: http://docs.opencv.org/master/d3/d50/group__imgproc__colormap.html#gga9a805d8262bcbe273f16be9ea2055a65a5d4a709cda1130bfa3cc4b4c5ae8f82a&gsc.tab=0
In the enum images, the "parula" colormap has wrongly assigned subtitle 'hot'
10 years ago
Ilya Lavrenov
4722b2d0e5
fixed memory leak caused by illegal memory access
10 years ago
Ilya Lavrenov
f100cdb6d4
fixed "Conditional jump or move depends on uninitialised value" warning
10 years ago
a-andre
b757359ff8
fix documentation builder warnings
10 years ago
Ilya Lavrenov
793bdaada7
typo
10 years ago
Ilya Lavrenov
b70e27e076
fixed memory leaks in warpAffine tests
10 years ago
Ilya Lavrenov
d1b882ddcf
fixed memory leaks in floodfill tests
10 years ago
Ilya Lavrenov
b2489d31d6
fixed memory leaks in cvtyuv tests
10 years ago
Wenju He
67ca143a0b
fix adaptiveThreshold mean
10 years ago
LaurentBerger
a64d096369
remove test
10 years ago
Vitaly Tuzov
a96a6bf149
Resize area result verification moved to the separate function
10 years ago
Vitaly Tuzov
b7c9aaa471
Added more resize_area tests to ensure right rounding behavior for half and quarter downscaling
10 years ago
Alexander Alekhin
4eef486afe
tapi: datarace fixup for cvtColor
10 years ago
Maksim Shabunin
14d7b38613
Fixing GCC 4.9 warnings
10 years ago
Alexander Alekhin
42ba5c7d16
fix GCC 4.9 warnings
10 years ago