Andrey Pavlenko
a8c0f1d962
fixing test failure on some systems
12 years ago
Andrey Kamaev
bf3c2b0bbb
Fix incorrect Mat address reconstruction on 64-bit platforms
...
This fixes random failures in Java wrappers.
12 years ago
Alexander Smorkalov
8cb0343f4c
Documentation build warning fixes.
...
Invalid links and refences fixed.
SpaeseMat class documentation updated.
12 years ago
Andrey Pavlenko
b0e1cb473a
more tests fixes
12 years ago
Andrey Kamaev
b1384a6da8
Fix cvCalcOpticalFlow when the status parameter is NULL
...
issue 2526
12 years ago
Andrey Kamaev
6131a847a2
Fix histogram calculation in equalizeHist
...
issue #2678
12 years ago
Anna Kogan
3271e395c8
Improved console output
12 years ago
Anna Kogan
0d7ce141aa
Cleaned code
12 years ago
Anna Kogan
0334cf11cc
Fixed last testsuit disregarding
12 years ago
Vadim Pisarevsky
e383d39598
fixed bug #2679
12 years ago
Andrey Kamaev
4e1ba6f02f
Fix build with libjpeg release 9
12 years ago
Andrey Kamaev
da9089612a
Fix build of java bindings on mingw
12 years ago
Maria Dimashova
0e2958e888
fixed CvBoost::predict
...
(Sometimes sample_data became bad because the buffer with its values was deallocated early).
12 years ago
Zifei Tong
260bdc057c
Changed parallel_for to parallel_for_ in haar.cpp
12 years ago
Andrey Pavlenko
c49b1bc6d5
partial fix for failing tests; fix for Windows launcher script; more quiet output
12 years ago
Zifei Tong
e331787645
Fix race condition for Cascade Classifier when TBB enabled.
12 years ago
Andrey Kamaev
b401c6a0c3
Fix discrepancies between function signatures in headers and documentation
12 years ago
Andrey Kamaev
aabbe11e64
Improve function arguments parsing and checking
...
* always use "argN" names for unnamed arguments
* honor space symbol between typename and "*", "&" symbols
* fix indent errors
12 years ago
Kirill Kornyakov
5023afffc7
Removed hack from perf test on HoughLines, since I hope it is fixed by pr263
12 years ago
Andrey Kamaev
16687a2655
Explicitly use double precision sin & cos in hough implementation
...
On some platforms sin and cos are calculated in single precision resulting in
diversity of results.
12 years ago
Alexander Smorkalov
9ca65ceef8
OpenCV example-tutorial1 does not work on Android emulator (Bug #2656 )
...
Problems with Android 2.3.3 (API level 10) fixed;
Android 2.2 does not work due to unsupported camera frame format (known android-2.2 emulator issue).
12 years ago
Anna Kogan
f57d692cd7
Improved code
12 years ago
Anna Kogan
e1331b44f5
Wrote script generating timing table
12 years ago
Alexander Mordvintsev
20838b6f6e
fix #2643 : use SVD to solve least squares in cvStereoRectifyUncalibrated
12 years ago
Andrey Kamaev
b870b246e1
Fix memory corruption in batchDistance perf tests
12 years ago
Andrey Kamaev
f87987ed72
Honor multidimensional matrices in InputArray::total
12 years ago
Andrey Kamaev
9944282b09
Fix build with STLPort from NDK r8d
12 years ago
Andrey Kamaev
b6efec5f8b
Add support for Android NDK r8d
12 years ago
Andrey Kamaev
9526907cba
Use .yml.gz format to reduce space requirement from ~260Mb to ~17Mb for ml tests
...
The size of temporary files is an issue on mobile platforms.
12 years ago
Andrey Kamaev
aaf779a3a2
Adjust OpenCV version to 2.4.3.2
12 years ago
takacsd
64f821908e
Add missing _WIN32 check in core/operations.hpp.
...
Fix a compilation error with MinGW gcc 4.7 with enabled C++11 support (-std=c++11).
Issue number: #2555
12 years ago
Andrey Kamaev
ca7abe1239
Reduce number of performance tests for LBP cascade
12 years ago
Eric Christiansen
ad326cb0be
adds desktop java junit tests
12 years ago
Alexander Smorkalov
d7c89fc649
A lot of javadoc warnings duting javadoc build (Bug #2647 ) issue fixed
...
Black list of entities, that are not implemented in Java API added to javadoc generator
12 years ago
Daniil Osokin
98d7d99244
Add threaded version of equalizeHist
12 years ago
Alexander Smorkalov
dfa4b2fefa
Workaround for gcc overoptimization compiler bug.
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
80a1d569ca
Add support for multidimentional matrices into the sanity checks
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
Éric Piel
7701fa7a63
highgui: fix segfault on CvCapture_GStreamer::open
...
when compiled with GStreamer, open (of a file) segfaults.
Fix was suggested by Bostjan Vesnicer.
12 years ago
Vsevolod Glumov
3f417f1ec3
Fixes for issues #2570 , #2492 , #2559 , #2489 , #2592 .
12 years ago
Andrey Kamaev
5a407153bd
Fix sanity checks in stitching test
12 years ago
Andrey Kamaev
932204d197
Added thresholds to some sanity checks
12 years ago
Andrey Kamaev
e1afb1409f
Add --perf_verify_sanity option to performance tests
...
This option provides an easy way to identify tests having no regression data
for sanity checks
12 years ago
Andrey Kamaev
6e244c83cd
Corrected sanity checks in several perf tests
...
Also fixed a typo in performance testing framework and removed hardcoded
temporary file name from highgui perf test
12 years ago
Kirill Kornyakov
cdbbfc98e1
Ugly hack to make HoughLines sanity check pass on Wun32
12 years ago
Andrey Kamaev
7c6191ec11
Refactored run.py script and temporary file generation logic
...
* use OPENCV_TEMP_PATH environment variable on all platforms
* fix cleanup after OpenCV tests on Windows
* add --list flag to output names of all tests found
* do not override user-passed --perf_min_samples and --perf_force_samples
options by --check flag
* fix complier checks inside run.py
12 years ago
Andrey Kamaev
1821d21f5b
Prevent imread from illegal memory access (Bug #2602 )
...
The change is based on pull request #211 .
12 years ago
Andrey Kamaev
b0d3830399
Update gtest to upstream r629
12 years ago