Vladislav Sovrasov
e4fed417d2
Add segmentation and object tracking python tests
9 years ago
Patrick Snape
05cfe28612
Fix parsing of training vecs for FlannBasedMatcher
...
FlannBasedMatcher::add is overloaded, but the style of parsing the
InputArrayOfArrays does not match the style from
DescriptorMatcher::add. The issue is that InputArrayOfArrays
must be properly marshalled so that the data can be read
correctly. In this case, the method expects the training
descriptors to be either a vector of matrices or a single matrix
(as is shown in DescriptorMatcher::add). These code
replicates that for the case of the FlannBasedMatcher::add.
In fact, a similar commit to this was added by 26d9a7c
but was
ultimately not accepted in #4111 . This is likely due to the
fact that the input arrays were not parsed properly and the
case of a single matrix was being improperly handled. I believe
this commit to be correct given the logic from
DescriptorMatcher::add.
9 years ago
Patrick Snape
2f5ea3437e
Update indentation to match rest of file
...
Very cosmetic, but was analyzing code and just wanted to make it
consistent.
9 years ago
Alexander Alekhin
3d85e7ac0d
features2d agast: clear in/out keypoints container
...
fixes #5863
9 years ago
Maksim Shabunin
7cb78451d1
Backported several changes from master branch:
...
- #3771 - inline round on ARM
- #5633 - documentation for MSER
- #5666 - run.py fixes
9 years ago
Alexander Alekhin
323e24e3ef
change links from samples/python2 to samples/python
9 years ago
Maksim Shabunin
84f37d352f
HAL moved back to core
9 years ago
Maksim Shabunin
2cda78ffac
Valgrind: fixed uninitialized image usage in descriptors regression tests
9 years ago
Balint Cristian
0087c57e0d
Fix KAZE/AKAZE descriptors to use angle instead radians.
9 years ago
Dominik Kleiser
0c471515fd
use float for CV_PI
9 years ago
Dominik Kleiser
c7cb028035
use floats for the calculation
9 years ago
Dominik Kleiser
767bae44ae
Fix the unit of angle for AKaze/Kaze KeyPoints
...
Convert the return value of getAngle from radian to degrees.
9 years ago
askourik
fedf064088
removing code duplicates and replace unsigned long by uint32_t
9 years ago
askourik
b3e8c65e5e
removed code duplication for non-intel platforms
9 years ago
askourik
4cf7ddfd87
Added new function definition in AGAST module header for tree-optimized version
9 years ago
askourik
cc5a1d612e
added comments and test perl examples for agast tree version
9 years ago
askourik
ae66ce9d22
Add treelookups for nonintel
9 years ago
berak
0baf0bdc24
AKAZE: check channels instead of type in detectAndCompute
...
add same CV_32F and CV_16U support for KAZE
9 years ago
Maksim Shabunin
7392ce0a81
Added some documentation for MSER
9 years ago
Maksim Shabunin
6e9d0d9a0c
Visual Studio 2015 warning and test fixes
9 years ago
Pavel Vlasov
e837d69f8f
IPPInitSingelton was added to contain IPP related global variables;
...
OPENCV_IPP env var now allows to select IPP architecture level for IPP9+;
IPP initialization logic was unified across modules;
9 years ago
Balint Cristian
fdbed4a473
Speedup AGAST nonmax-suppression.
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
Alexander Alekhin
7213e5f68a
ocl: correct disabling of OpenCL code
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
Maksim Shabunin
771af4f32d
Some changes to support mingw-w64
...
- IPP is disabled by default when compiler is mingw (couldn't make it
work)
- fixed some warnings
- fixed some `__GNUC__` version checks (for correctness and convenience)
- removed UTF-8 BOM from hough.cpp (fixes #5253 )
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
Roman Donchenko
72ddeea479
FREAK: add missing field initialization
9 years ago
Evgeny Agafonchikov
6a6d58d389
Adding test support for WINRT
10 years ago
Maksim Shabunin
fef7509eed
NumpyAllocator: check reference count before actual release, revert flann changes
10 years ago
Maksim Shabunin
26d9a7cd40
Trying to fix flann python wrapper issue
10 years ago
Niklas Frisk
8138e26163
Fixes #3910 , flags in _prepareImgAndDrawKeypoints are now binary OR'ed instead of added.
...
Conflicts:
modules/features2d/src/draw.cpp
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
fede94e979
it's now true MSER algorithm that works well on binary images too
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
laurentBerger
3a53e726dd
example BLOB_MSER and fixed bug in blobdetector
10 years ago
cbalint13
fb56d5c482
Squash all BRISK commits into one.
10 years ago