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
06d4aa6060
now all the samples and opencv_contrib compile!
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
2e915026a0
yet another attempt to refactor features2d; the first commit, features2d does not even compile
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
Vadim Pisarevsky
31df47b6ea
moved nonfree and a part of features2d to opencv_contrib/xfeatures2d
10 years ago
f-morozov
7f82960897
AKAZE fixes, tests and tutorial
10 years ago
berak
3500c940d4
add Bag of Words to python wrapper
11 years ago
Ilya Lavrenov
556206de2d
fixed defects found by coverity scan
11 years ago
berak
fc610979bb
export BOW to script wrappers
11 years ago
Ievgen Khvedchenia
029a8c443a
Remove GSURF descriptor from KAZE algorithm
11 years ago
Ievgen Khvedchenia
3a8e15fad9
Fix documentation warnings
11 years ago
Ievgen Khvedchenia
b42c268164
Temporary remove of CV_WRAP
11 years ago
Ievgen Khvedchenia
1a5fcd715d
Refactor of KAZE and AKAZE:
...
1) Clean-up from the unused code
2) Remove of SURF extraction method
3) Enabled threading for KAZE extraction
4) Exposed new properties for runtime configuration
11 years ago
Ievgen Khvedchenia
36db97068c
Added missing operator()
11 years ago
Ievgen Khvedchenia
137ff7eccb
Added KAZE and AKAZE wrappers
11 years ago
Clemens Korner
f1c8b4b965
FEATURES2D: add DenseFeatureDetector Python wrapper
11 years ago
Ilya Lavrenov
099ea91823
typos
11 years ago
Ilya Lavrenov
6ad7b64912
some more changes
11 years ago
Ilya Lavrenov
f74ef644bc
changed the signature of add method according to the base class
11 years ago
Pierre Moulon
8829e9f6c8
Fix a typo error
11 years ago
Konstantin Matskevich
bdfa9fa14a
fixes2
11 years ago
Konstantin Matskevich
eb4c2cd59f
removed CV_IN/OUT
11 years ago
Konstantin Matskevich
f44334285b
features2d
11 years ago
Vadim Pisarevsky
8d5e952263
very preliminary port of SURF to T-API (compiles but certainly does not work)
11 years ago
Ilya Lavrenov
e559256719
added cv::GFTTDetector
11 years ago
Konstantin Matskevich
3b7683e72f
fixed docs
11 years ago
Konstantin Matskevich
ca5689e0db
BFMatcher
...
match
radiusMatch
11 years ago
StevenPuttemans
e4b41d38f1
Fixed descripotorsCount to descriptorsCount
...
See feature 2862
11 years ago
Peter Andreas Entschev
6f3163f62d
DescriptorExtractor: added defaultNorm() to return default norm type.
...
Added the defaultNorm() method to the DescriptorExtractor class. This method returns the default norm type for each descriptor type. The tests and C/C++ samples were updated to get the norm type directly from the DescriptorExtractor inherited classes.
This was reported in feature report #2182 (http://code.opencv.org/issues/2182 ). It will make it possible to get the norm type usually applied matching method for each descriptor, instead of passing it manually.
11 years ago
sprice
2cc11e2c6a
Updating STAR detector and FREAK descriptor to work with large and/or 16-bit images
11 years ago
Roman Donchenko
bcb6f0386e
Named FastFeatureDetector::Type to allow its use in makePtr.
...
It has actually worked before (likely because it's inside a class),
but C++03 does disallow unnamed types as template arguments,
and there's a report that at least in one version of GCC it's
enforced: <http://code.opencv.org/issues/3278 >.
11 years ago
Alexander Alekhin
0ee47502d9
remove CV_EXPORT from templates
11 years ago
Vladislav Vinogradov
0c7663eb3b
Merge branch 'master' into gpu-cuda-rename
...
Conflicts:
modules/core/include/opencv2/core/cuda.hpp
modules/cudacodec/src/thread.cpp
modules/cudacodec/src/thread.hpp
modules/superres/perf/perf_superres.cpp
modules/superres/src/btv_l1_cuda.cpp
modules/superres/src/optical_flow.cpp
modules/videostab/src/global_motion.cpp
modules/videostab/src/inpainting.cpp
samples/cpp/stitching_detailed.cpp
samples/cpp/videostab.cpp
samples/gpu/stereo_multi.cpp
11 years ago
Roman Donchenko
1eacb485c5
Boring changes - features2d.
11 years ago
Mathieu Barnachon
464985205c
Update PR after mdim review.
11 years ago
Roman Donchenko
9ed475cf52
War on Whitespace, master edition: file endings.
11 years ago
Mathieu Barnachon
43c9818895
Adding class for BOW image matcher (Feature #3005 ).
...
Same prototype as BOWImgDescriptorExtractor, but do only the matching.
If the feature is accepted, the BOWImgDescriptorExtractor and BOWImgDescriptorMatcher should probably refactor with inheritance.
Add a class to compute the keypoints, descriptors and matching from an image should be added to.
11 years ago
Roman Donchenko
4ac2db271d
Removed CV_EXPORTS from all template classes (that I could find).
...
It doesn't make sense to export template classes, since there's no way
the user can learn that it can import them. In fact, it is somewhat
deleterious, because every module will export every instantiation
that it uses, but doesn't inline.
11 years ago
Alexander Mordvintsev
57bd485119
compute method for Feature2D
11 years ago
abidrahmank
5d863f7516
drawMatches python bindings
12 years ago
Alexander Mordvintsev
3677a66403
line realign
12 years ago
Alexander Mordvintsev
8045093cfb
GFTT wrapped to python
12 years ago
Andrey Kamaev
e5a33723fc
Move C API of opencv_calib3d to separate file
12 years ago
Andrey Kamaev
ae4e76395f
Make flann headers independent from OpenCV C API
12 years ago
Andrey Kamaev
2b1ef95415
Completely separate C and C++ API of OpenCV core
12 years ago
Andrey Kamaev
49f6dad13f
Move cv::KeyPoint and cv::DMatch to core
12 years ago
Alexander Mordvintsev
4d510be2c9
added compute function to Feature2D (dirty workaround for #2699 )
12 years ago
Andrey Kamaev
be7bbe3aa9
Drop cv:: prefix from cv::String used inside the cv namespace
12 years ago