will hunt
ac2d79fd67
MSER: all test passed.
...
1. if a component's variation is a global minimum than it should be a local minimum
2. for the small image with invert and blur, the MSERs number should be 20
8 years ago
Maksim Shabunin
2cda78ffac
Valgrind: fixed uninitialized image usage in descriptors regression tests
9 years ago
Ilya Lavrenov
7e4e8921bc
fixed memory leak in descriptor regression tests
9 years ago
Ilya Lavrenov
6dcd455ac4
fixed memory leaks in modules/features2d/test/test_nearestneighbors.cpp
9 years ago
Roman Donchenko
3231c2f995
NearestNeighborTest: use ts->get_rng() instead of (implicit) theRNG()
...
This ensures that test data is not dependent on the order the tests are
executed in.
(cherry picked from commit 1245cd1752
)
9 years ago
Ilya Lavrenov
69c50e0181
fixed typo
...
(cherry picked from commit 370d1ff21a
)
9 years ago
Ilya Lavrenov
cf0f47f589
fixed memory leak in descriptor regression tests
9 years ago
Ilya Lavrenov
f7d36bbad5
fixed memory leaks in modules/features2d/test/test_nearestneighbors.cpp
9 years ago
Ilya Lavrenov
e390c8c728
fixed typo
9 years ago
Roman Donchenko
ec0508269a
NearestNeighborTest: use ts->get_rng() instead of (implicit) theRNG()
...
This ensures that test data is not dependent on the order the tests are
executed in.
9 years ago
Ilya Lavrenov
dc441f50cd
fixed memory leak in descriptor regression tests
9 years ago
Ilya Lavrenov
be499b42d9
fixed memory leaks in modules/features2d/test/test_nearestneighbors.cpp
9 years ago
Ilya Lavrenov
370d1ff21a
fixed typo
9 years ago
Roman Donchenko
1245cd1752
NearestNeighborTest: use ts->get_rng() instead of (implicit) theRNG()
...
This ensures that test data is not dependent on the order the tests are
executed in.
9 years ago
Evgeny Agafonchikov
6a6d58d389
Adding test support for WINRT
10 years ago
Vadim Pisarevsky
af47b6551f
another attempt to make the MSER test pass. removed possible randomization in parameters from run to run
10 years ago
Vadim Pisarevsky
4c67ae1a0b
fixed failure in Features2d_MSER.cases
10 years ago
Vadim Pisarevsky
dab78c26b1
added reasonable test for MSER (including coverage for http://code.opencv.org/issues/4273 , http://code.opencv.org/issues/1723 and http://code.opencv.org/issues/756 ); also, added some "in-progress" info to the Features2d_Feature2d.no_crash test.
10 years ago
Vadim Pisarevsky
b5a7122855
added test to do smoke testing of ORB, KAZE, AKAZE and BRISK on images of different size
10 years ago
Vadim Pisarevsky
fc06a2384b
added test for batch detection/descriptor extraction ( http://code.opencv.org/issues/3943 )
10 years ago
Vadim Pisarevsky
432cf1152a
added read/write functions for vector<DMatch> + the test ( http://code.opencv.org/issues/4308 )
10 years ago
cbalint13
fb56d5c482
Squash all BRISK commits into one.
10 years ago
cbalint13
26997f32c6
Fix BRISK detector&descriptor using proper AGAST.
10 years ago
ippei ito
b8c00854fe
instead of "using namespace cv" put all the tests into cv:: namespace.
10 years ago
ippei ito
b7276359e9
Test accuracy for PR#3829
10 years ago
ippei ito
65b0ecfec5
Test accuracy for PR#3829.Fix WOrder warning on gcc
10 years ago
ippei ito
d1902a1276
Test accuracy for PR#3829.Fix warning on gcc, comment out INIT_RANDOM_SEED for same result each ran.
10 years ago
ippei ito
56cae1b293
Test accuracy for PR#3829.Fix Some Error, Modify SLA.
10 years ago
ippei ito
7c740b6a31
Test accuracy for Pull Request # 3829
10 years ago
orestis
fffe2464cd
Change DescriptorExtractor_ORB regression test
...
to compensate for neon ieee754 non-compliancy.
Also changed the comparison between max valid and calculated distance to
make the error message more accurate (in case curMaxDist == maxDist)
10 years ago
Vadim Pisarevsky
d2b9dc5530
quickly corrected the previous refactoring of features2d: moved from set(SOME_PROP, val) to setSomeProp(val)
10 years ago
Vadim Pisarevsky
1176d4ef84
fixed some more compile errors and test failures
10 years ago
Vadim Pisarevsky
9c9ecc22e2
fixed opencv_java build
10 years ago
Vadim Pisarevsky
fa76c634ec
ok; all the tests now pass
10 years ago
Vadim Pisarevsky
01d3848f17
all the tests now pass except for MSER
10 years ago
Vadim Pisarevsky
162384a838
fixed several test failures; currently 9 out of 73 tests fail
10 years ago
Vadim Pisarevsky
09df1a286b
OpenCV with the refactored features2d compiles! contrib is broken for now; the tests are not tried yet
10 years ago
Vadim Pisarevsky
c422bdc3f8
fixed some more compile errors and test failures
10 years ago
Vadim Pisarevsky
61cddd8b63
fixed opencv_java build
10 years ago
Vadim Pisarevsky
25a7d023dd
ok; all the tests now pass
10 years ago
Vadim Pisarevsky
c5261ea3d2
all the tests now pass except for MSER
10 years ago
Vadim Pisarevsky
97a5dd0ead
fixed several test failures; currently 9 out of 73 tests fail
10 years ago
Vadim Pisarevsky
5e667ee53a
OpenCV with the refactored features2d compiles! contrib is broken for now; the tests are not tried yet
10 years ago
Felix Endres
ee6835492c
Exposing the FAST detector threshold for ORB
...
Implemented as a new optional parameter for
the constructor of the ORB detector. The
change of this parameter has been included
in the orb unit test.
10 years ago
E Braun
aa9da6e433
regression test for bug 3172
10 years ago
Dmitriy Anisimov
5f3ee657ce
removed kdtree declaration from interface
10 years ago
Dmitriy Anisimov
37b1a7560c
first version of moving KDTree from core to ml
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
Vadim Pisarevsky
27d2d3cbac
fixed doc builder complains and the test failures
10 years ago
Alexander Alekhin
55188fe991
world fix
10 years ago