Vadim Pisarevsky
4530c7ad08
trying to fix builds
11 years ago
Vadim Pisarevsky
257463719b
removed optim module; moved its functionality to core and photo modules; moved drawing functions from core to imgproc. Removed FilterEngine etc. from public API
11 years ago
Alexander Karsakov
8760a344ec
Fixed incorrect pointer conversion for in-place threshold
11 years ago
Adil Ibragimov
9ac06a9333
fix for gcc
11 years ago
Adil Ibragimov
8a4a1bb018
Several type of formal refactoring:
...
1. someMatrix.data -> someMatrix.prt()
2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
11 years ago
Alexander Karsakov
b4d3b34acf
Disabled ippiFilterBoxBorder_* in case maskSize equal roiSize for any dimension
11 years ago
Alexander Karsakov
5898dcae4a
Added ROUNDING_EPS for identical rounding after dividing on different platforms
11 years ago
Elena Gvozdeva
8124d10526
fixed Erode and Dilate in case of kernel = Mat()
11 years ago
Nathan Jackson
563200fbf6
CPU (non-OpenCL) CLAHE now supports CV_16UC1.
11 years ago
Alexander Karsakov
498da24b8b
Disabled some IPP calls of cvtColor since it breaks OCL accuracy tests
...
with test_loop_times=30
11 years ago
Alexander Karsakov
6b0e63b652
Enabled IPPMorphReplicate in case BORDER_CONSTANT only for 3x3 kernels.
11 years ago
Vadim Pisarevsky
d0137b6d2d
moved part of video to contrib/{outflow, bgsegm}; moved matlab to contrib
11 years ago
Vadim Pisarevsky
e2f24f43c9
added some basic functionality needed by the new face module (moved from the old "contrib")
11 years ago
Vadim Pisarevsky
05e7c29de5
fixed various warnings and obvious errors reported by clang compiler and the coverity tool.
11 years ago
Elena Gvozdeva
7cba3ac4f8
small fix for GaussianBlur ocl test
11 years ago
Alexander Karsakov
7849c35de1
Changed check condition in tests for warpAffine and warpPerspective
11 years ago
Elena Gvozdeva
b7899c3d5c
small fix for ocl_resize
11 years ago
Elena Gvozdeva
b5f251c815
fixed test ocl_MatchTemplate for sparse matrix
11 years ago
Adil Ibragimov
98d5731ad8
some formal changes (generally adding constness)
11 years ago
Elena Gvozdeva
7dd7dd97cd
fixed nDiffs for CalcBackProject
11 years ago
Elena Gvozdeva
c9b5d8cf4c
fixed tests for ocl_filter2d, ocl_matchTemplate, ocl_histogram.cpp
11 years ago
Alexander Karsakov
44fbfb2cf6
Fixed extrapolation in pyrDown
11 years ago
Alexander Karsakov
2a0b39d30a
Fixed calculate_histogram kernel
11 years ago
Alexander Karsakov
eb9fdb0164
Fixed rounding in remap INTER_LINEAR mode
11 years ago
Alexander Karsakov
fec21239c8
Revert optimization for warpAffine INTER_NEAREST mode
11 years ago
Alexander Alekhin
55188fe991
world fix
11 years ago
Elena Gvozdeva
7999fbf765
fixed ocl_integral
11 years ago
Elena Gvozdeva
f32b52ea8d
fixed test for CvtColor RGB -> Luv
11 years ago
Elena Gvozdeva
8c2c3b54d9
fixed ocl tests for BlendLinear, BoxFilter, Integral
11 years ago
Vladislav Vinogradov
a3da3a01e1
fix test_opencv_imgproc compilation
11 years ago
Vadim Pisarevsky
222f8a3d5e
hopefully fixed test failure on Linux
11 years ago
VBystricky
0f9b79ef64
Change min-max to clamp
11 years ago
vbystricky
b724208510
Fix Luv2RGB function
11 years ago
Elena Gvozdeva
90ac88cb8e
use std::min,max
11 years ago
vbystricky
bd8894002e
Fix some problems
11 years ago
vbystricky
878dec65c8
Optimize OpenCL version of morfology and box filters for small filter kernels
11 years ago
Vadim Pisarevsky
101769d26c
eliminated some unnecessary instructions
11 years ago
Elena Gvozdeva
dbb5993d13
added dft for all platforms
11 years ago
Elena Gvozdeva
dc3c691c8c
new block size for dft
11 years ago
Elena Gvozdeva
e7216a5987
Used float instead of int for CV_8U in sumTemplate
11 years ago
Vadim Pisarevsky
11e9e375a3
fixed compile warning with GCC
11 years ago
Vadim Pisarevsky
4255746c00
fixed compile warnings and removed extra whitespaces
11 years ago
Vadim Pisarevsky
4dfb613c3e
optimized Bayer=>RGB/RGBA/Gray conversion using Neon intrinsics. Fixed recently introduced build error in iOS framework.
11 years ago
Sander Mathijs van Veen
d25770ee76
Fix Python 2 bindings for findContours
...
The sanity check prevents Python 2 from calling findContours, because the
Python 2 bindings pass an empty matrix for `_contours`. If `_contours` is not
empty, the channel and depth check should determine whether the matrix is of
the correct type and size.
Note: the Python 2 bindings passes a matrix of type `STD_VECTOR_MAT` to
parameters of the type `OutputArrayOfArrays`.
11 years ago
vbystricky
e49d148d47
Optimize ocl function pyrDown
11 years ago
vbystricky
716218cac4
Optimize ocl version of warp_affine
11 years ago
pradeep
7171431e7c
Changed cv::log to std::log
11 years ago
Ilya Lavrenov
fee3d6931b
corners
11 years ago
pradeep
0d49f97128
Fixed truncation warning
11 years ago
pradeep
f8b23cff18
Fixed test errors, added support for C data types.
11 years ago