Daniil Osokin
98d7d99244
Add threaded version of equalizeHist
12 years ago
Daniil-Osokin
cd501d947c
perf tests for calcHist 2-3D case
12 years ago
Daniil-Osokin
7d94236c14
TBB version of calcHist
12 years ago
Andrey Kamaev
0bbba847a4
Fix equalization formula in equalizeHist function & rewrite in C++
...
Old implementation did
lut[i] = 255 * (count(Y <= i)) / (width * height)
which actually shifts uniform histograms.
From now histogram is equalized as
C = count(Y == min(Y))
lut[i] = 255 * (count(Y <= i) - C) / (width * height - C)
12 years ago
Vsevolod Glumov
3f417f1ec3
Fixes for issues #2570 , #2492 , #2559 , #2489 , #2592 .
12 years ago
Andrey Kamaev
932204d197
Added thresholds to some sanity checks
12 years ago
Kirill Kornyakov
cdbbfc98e1
Ugly hack to make HoughLines sanity check pass on Wun32
12 years ago
Alexander Smorkalov
f6ff2b87fa
Some perf tests on warping and resize disabled on Android
...
MatInfo_Size_Size.resizeDownLinear
MatInfo_Size_Size.resizeUpLinear
TestWarpPerspectiveNear_t.WarpPerspectiveNear
TestWarpPerspective.WarpPerspective
12 years ago
Anna Kogan
8877066846
increased time-limits
12 years ago
Andrey Pavlenko
c36dcbcada
Increase accuracy interval for image filters on Android and other platforms when sensible
12 years ago
Andrey Kamaev
a126532cb7
Fix OS X build warnings
12 years ago
marina.kolpakova
7a5b9a6b7f
replase __APPLE__ marco with __clang__
12 years ago
Andrey Kamaev
e3be5f138a
Fixed sanity checks in several performance tests
12 years ago
Andrey Kamaev
fcad269e53
Specify sanity threshold for WarpPerspective perf test
12 years ago
Andrey Kamaev
2b0072d823
Suppress more warnings in gtest on OS X
12 years ago
Andrey Kamaev
673aa91bac
Fix remaining windows build warnings
12 years ago
Andrey Pavlenko
a94e80bea3
fixing typos in perf tests for warp funcs
12 years ago
Andrey Kamaev
afc79e2a02
Fix warnings from MSVC 9 64-bit
12 years ago
Daniil Osokin
e9ba5c225d
extended perf test warpPerspectiveLarge
12 years ago
Vadim Pisarevsky
fbe0d6963c
disabled several tests on Mac when no FFMPEG is used; disabled automatic table initialization in imgwarp in the case of MinGW
12 years ago
Andrey Kamaev
40030d2ca0
Fix windows build warnings
12 years ago
Andrey Kamaev
e1c3ffb23f
Fix weight calculation for the last pixel in generic area resize.
...
Also removed assigned only variable.
12 years ago
Vadim Pisarevsky
80f9bd864f
fixed bug #2429
...
[edit: cleaned whitespace]
12 years ago
Vadim Pisarevsky
c40718ab61
fixed bug #2059
12 years ago
Andrey Kamaev
461b69f6ee
Eliminate discrepancies between signatures in documentation and OpenCV headers
...
All errors were found by doc/check_docs2.py
12 years ago
OpenCV Buildbot
04384a71e4
Normalize line endings and whitespace
12 years ago
Andrey Kamaev
ed51162568
Fix binary compatibility of Java wrappers
12 years ago
Andrey Kamaev
64b56d7018
Revert "remaining C-style planar subdivisions data structures are moved to legacy"
...
This reverts commit 4aaaef5967
.
Conflicts:
modules/imgproc/include/opencv2/imgproc/types_c.h
modules/legacy/include/opencv2/legacy/legacy.hpp
12 years ago
Andrey Kamaev
58f31819cc
Return drawContours back to imgproc
...
This partly reverts commit 6ca618277c
.
12 years ago
Vadim Pisarevsky
78a0b9787c
fixed build errors on Mac; moved test for #2332 from imgproc to highgui
12 years ago
Ilya Lavrenov
2cda65a782
fixed cvtColor (RGB <-> Lab) tests and created another one
12 years ago
Ilya Lavrenov
5f9aedbe01
fixed bug in cvtColor RGB(BGR) <-> Lab conversion
12 years ago
Evgeny Talanin
cfe28e3b73
Added test inspired by #2332
12 years ago
Kirill Kornyakov
e770691522
deleted wrong line
12 years ago
Kirill Kornyakov
de98da42f7
commented wrong line
12 years ago
Kirill Kornyakov
84176fa027
Added perf test for warpPerpsective with large resolutions
12 years ago
Vadim Pisarevsky
5474b4d4bc
finally, a proper fix for VNG (both SSE2 and C version)
12 years ago
Vadim Pisarevsky
354a5f2686
added recommended number of stripes to parallel_for_, modified some of the functions to use larger stripes (for better performance)
12 years ago
Andrey Kamaev
dc4a649513
Fix OS X build
12 years ago
Andrey Kamaev
be98693aaf
Enable parallel CvtColorLoop for all platforms
12 years ago
Andrey Kamaev
df94591336
Fix instability of Luv/Lab color conversions
12 years ago
Daniil Osokin
e435674a90
added perf test for gabor filter
12 years ago
Daniil Osokin
f1e025dc68
delete normalization in gabor kernel #1995
12 years ago
Evgeny Talanin
8528b0abcd
#1941 fix
12 years ago
Vadim Pisarevsky
e625d86485
added C= support; modified threading logic in threshold
12 years ago
Vadim Pisarevsky
044d38a051
expanded cv::threshold parallelization to other threading frameworks; fixed potential bug with unprocessed bottom of the image; fixed build problem in stitching
12 years ago
Vadim Pisarevsky
b0ad424087
fixed several warnings from VS2010
12 years ago
Vadim Pisarevsky
a8c5e35619
some more fixes towards binary compatibility
12 years ago
Evgeny Talanin
7c71c8fa52
#2258 fix
12 years ago
Andrey Kamaev
13bfcd643e
Fix sanity checks in improc perf tests
12 years ago