sprice
73b0827ec1
Don't automatically convert to grayscale (keep previous behavior.)
11 years ago
sprice
2cc11e2c6a
Updating STAR detector and FREAK descriptor to work with large and/or 16-bit images
11 years ago
Andrey Pavlenko
1966e7cea9
fixing compilation on Linux
11 years ago
Andrey Pavlenko
bd9d3dd561
fixing build of 2.4 branch with VC12 (aka 2013)
...
(master branch was fixed before, no need to merge this to master!)
- disable openexr (numerous undefined std::min & std::max)
- workaround for two compilator bugs
11 years ago
Mathieu Barnachon
fb9c59dd8d
Fix default argument.
11 years ago
Mathieu Barnachon
b413bcbba4
Fix shadow parameter.
11 years ago
Mathieu Barnachon
99c8b8c016
Fix parameter name to fit documentation.
11 years ago
Mathieu Barnachon
4f74e2509b
Fix the documentation names.
11 years ago
Mathieu Barnachon
c90fe65f22
Fix compilation issue related to previous commit.
11 years ago
Mathieu Barnachon
e8b86c8663
Fix name of one parameter to fit the documentation.
11 years ago
Mathieu Barnachon
9dc713eaba
Fix name of parameter to have proper documentation.
11 years ago
Mathieu Barnachon
bf84d476fc
Fix useless space...
11 years ago
Mathieu Barnachon
0c4da123e9
Remove duplicate functions.
11 years ago
Jose-Luis Blanco-Claraco
80e667b647
Minimized the number of arguments required to workaround the MSVC2013 compiler bug.
11 years ago
Jose-Luis Blanco-Claraco
77023e2366
Added comment to features2d_init.cpp explaining the reason for the extra parameters.
11 years ago
Jose-Luis Blanco-Claraco
c33ca77838
Undo changing whitespace.
11 years ago
Jose-Luis Blanco-Claraco
bec35eeddb
Avoid duplicated variable declarations.
11 years ago
Jose-Luis Blanco-Claraco
52a904e17b
Fixed MSVC 2013 build errors and workaround for an internal compiler crash.
11 years ago
Ilya Lavrenov
35d9ce0c0c
fixed warnings
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
Roman Donchenko
9b92545ce6
War on Whitespace, master edition: trailing spaces.
11 years ago
Roman Donchenko
e9a28f66ee
Normalized file endings.
11 years ago
Roman Donchenko
f55740da70
Deleted all trailing whitespace.
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
d9f71b762f
Deleted almost all of the precomp.cpp files.
...
Looks like we don't actually use them; when creating precompiled headers
with Visual C++, a dummy .cpp is created at build time.
11 years ago
StevenPuttemans
ed76b2f98f
Like mentioned by Andrei Pavlenko after merging pullrequest #1206 , a wrong
...
ReST directive was used. Also fixed some other ReST directives that were
not correct and removed some warnings during buildbot checks.
11 years ago
Roman Donchenko
2f780ed994
Fix whitespace errors.
11 years ago
StevenPuttemans
f28496c628
Added sample links in documentation for python2, ocl and gpu
11 years ago
StevenPuttemans
0c5244103f
Added all *.cpp samples reference to the 2.4.6 documentation as discussed in feature #3169
...
- Used lunix style slashes - works on most systems
- Removed all trailing whitespaces
12 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.
12 years ago
Alexander Mordvintsev
57bd485119
compute method for Feature2D
12 years ago
Alexander Pacha
0b15cfd48c
Added FREAK-descriptor extractor to documentation.
...
Previously it was missing.
Ordered all descriptors by year of first publication.
12 years ago
StevenPuttemans
194af062ff
Adapted the reference underscore to link properly
12 years ago
StevenPuttemans
a92feafc49
Fixed bug 3166 - added paper reference to stardetector code
12 years ago
StevenPuttemans
52bfa7b850
Fixed bug 1873 : return image keypoint descriptors + fix on line 152 pure declaration
12 years ago
abidrahmank
1923d87f61
PyDocs for common interface of feature2d
12 years ago
abidrahmank
f91f369788
PyDocs for FAST, ORB etc
12 years ago
abidrahmank
2047838106
feature2d drawing functions PyDocs
12 years ago
abidrahmank
5d863f7516
drawMatches python bindings
12 years ago
Roman Donchenko
ac39bfb4cc
Remove HAVE_CVCONFIG_H - it's always defined.
12 years ago
Alexander Mordvintsev
3677a66403
line realign
12 years ago
Alexander Pacha
eaa29110e1
Fixed issue 3130 ( http://code.opencv.org/issues/3130 ), where one argument of the BRISK-call was ignored. Previously it was not possible to use BRISK without creating descriptors.
...
Now it behaves like ORB (and how it is documented), and you can call BRISK to just generate feature points and no descriptors.
12 years ago
Alexander Mordvintsev
8045093cfb
GFTT wrapped to python
12 years ago
Roman Donchenko
29b13ec1de
Replaced most of the usages of parallel_for with that of parallel_for_.
...
This should allow many algorithms to take advantage of more parallelization
technologies.
12 years ago
alex77git
6e7b1ef252
Bug #2967 , void DescriptorMatcher::radiusMatch() // description unclear,
...
only file: common_interfaces_of_descriptor_matchers.rst
12 years ago