Vitaly Tuzov
51cb56ef2c
Implementation of bit-exact resize. Internal calls to linear resize updated to use bit-exact version. ( #9468 )
7 years ago
Ilya Lavrenov
5bc10ef796
fixed empty image condition in resize
8 years ago
Ilya Lavrenov
d28e6c9b36
fixed memory leak caused by illegal memory access
...
(cherry picked from commit 4722b2d0e5
)
9 years ago
Ilya Lavrenov
d81a0df489
fixed memory leak caused by illegal memory access
9 years ago
Ilya Lavrenov
4722b2d0e5
fixed memory leak caused by illegal memory access
9 years ago
Ilya Lavrenov
faf91a466c
imrpoved output of warp test in case of failure
10 years ago
Ilya Lavrenov
6377f5a458
fixed warps accuracy tests
10 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
10 years ago
Adil Ibragimov
98d5731ad8
some formal changes (generally adding constness)
10 years ago
Roman Donchenko
7ea1bf3cf0
Fixed several problems found by PVS-Studio.
...
This fixes all problems from the article "Checking OpenCV with PVS-Studio"
<http://www.viva64.com/en/b/0191/ > that are not already fixed and are
not in 3rdparty or the legacy module.
The problems fixed are two instances of useless code and one instance
of unspecified behavior (right-shifting a negative number).
11 years ago
Ilya Lavrenov
aa5326c231
cv::norm -> cvtest::norm in tests
...
Conflicts:
modules/core/src/stat.cpp
11 years ago
Roman Donchenko
4f109d1292
Fixed a memory access error in CV_Remap_Test::generate_test_data.
...
begin_x[1] is not the second component of the element, but the element
after the one pointed to begin_x. When begin_x points to the last
element, that line overwrites data past the end of the allocation, which,
during my tests, happened to contain the reference count for the matrix.
Hilarity ensues.
11 years ago
Andrey Kamaev
969a7133a9
Implementation of cv::Matx and cv::Vec is almost moved to matx.hpp
12 years ago
OpenCV Buildbot
81f826db2b
Normalize line endings and whitespace
12 years ago
OpenCV Buildbot
04384a71e4
Normalize line endings and whitespace
12 years ago
Ilya Lavrenov
a65cb5d2de
added extra debug parameters in resize test
12 years ago
Ilya Lavrenov
03daf44848
added recalculating scale coefficients
12 years ago
Andrey Kamaev
e73089bdb5
Fix windows build warnings
12 years ago
Ilya Lavrenov
fbd9bfba47
fixed some warnings and errors on windows
12 years ago
Andrey Kamaev
b1b5e392e6
Fix Android build warnings in new imgproc tests
12 years ago
Ilya Lavrenov
dd1091bbe1
a reference function for remap was stabilized
12 years ago
Vadim Pisarevsky
932100c5a3
fixed build errors and warnings on Windows
12 years ago
Ilya Lavrenov
5eac0419b2
changed eps in validate_result function
12 years ago
Ilya Lavrenov
be51e5d1b1
More strict tests for image waring algorithms
12 years ago