ippei ito
cd42e38013
FlannBasedMatcher(LshIndex) in the feature2d optimization for continuance additional train()
...
Current implementation of miniflann is releasing the trained index, and
rebuilding the index from the beginning.
But, some indexing algorithms like the LSH are able to add the indexing
data after that.
This branch is implementation of that optimization for LshIndex
FlannBasedMatcher in the feature2d.
10 years ago
Maksim Shabunin
91e21847e2
Some changes to make migration to 3.0 easier
10 years ago
StevenPuttemans
db9a0cfbc0
add extra to FeatureDetector docs
10 years ago
Maksim Shabunin
09fb7512ed
Fixed iOS framework compilation warnings
10 years ago
Maksim Shabunin
9b55c09999
Basic doxygen documentation support
...
- updated existing Doxyfile.in
- added corresponding cmake instructions
- added some specific files (layout, icon)
- clean existing doxygen warnings
Conflicts:
CMakeLists.txt
doc/CMakeLists.txt
modules/core/include/opencv2/core.hpp
modules/core/include/opencv2/core/base.hpp
modules/core/include/opencv2/core/cuda.inl.hpp
modules/core/include/opencv2/core/mat.hpp
modules/core/include/opencv2/core/matx.hpp
modules/core/include/opencv2/core/types.hpp
modules/flann/include/opencv2/flann/lsh_table.h
modules/imgproc/include/opencv2/imgproc.hpp
10 years ago
Niklas Frisk
af72e6b8f4
Fixes #3910 , flags in _prepareImgAndDrawKeypoints are now binary OR'ed instead of added.
10 years ago
StevenPuttemans
d4ec359f11
Fixing errors
10 years ago
StevenPuttemans
03662c0589
fix blobdetector
10 years ago
E Braun
d82b918a7b
fix for bug 3172
10 years ago
E Braun
aa9da6e433
regression test for bug 3172
10 years ago
E Braun
bdb82d181f
fix for bug 3172
10 years ago
Adrian Clark
fcc481e751
Fixed crash in SSE implementation of FREAK descriptor when number of pairs is set to something other than 512.
...
See http://code.opencv.org/issues/3889 for more details
10 years ago
E Braun
bbe48eaac6
regression test for bug 3172
10 years ago
PhilLab
d5489f3a68
Clarified DescriptorExtractor::compute
11 years ago
berak
3500c940d4
add Bag of Words to python wrapper
11 years ago
berak
fc610979bb
export BOW to script wrappers
11 years ago
Maks Naumov
eb89f5207c
remove unused variables in CV_KDTreeTest_CPP::findNeighbors()
11 years ago
Martin Jul
a1798cb28e
Fixed typo in BFMatcher in docs.
11 years ago
Ilya Lavrenov
80df44bd75
doc fix
11 years ago
Ilya Lavrenov
099ea91823
typos
11 years ago
Ilya Lavrenov
6b9ebcbf3d
deleted extra semicolons
11 years ago
Peter Andreas Entschev
c289c8a700
Fixing some indentation issues on FREAK source file.
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
Alexander Alekhin
0ee47502d9
remove CV_EXPORT from templates
11 years ago
Roman Donchenko
e9a28f66ee
Normalized file endings.
11 years ago
Roman Donchenko
f55740da70
Deleted all trailing whitespace.
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
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
11 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
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
Andrey Kamaev
96b008cd29
Eliminate the need of ::testsing::ValuesIn() for CV_ENUM
...
Also cv::, cv::gpu:: and cv::ocl:: namespace prefixes can be safely omitted
inside CV_ENUM and CV_FLAGS
12 years ago
Alexander Shishkov
382695ba5a
removed links to the http://opencv.willowgarage.com/
12 years ago
Vladislav Vinogradov
3d095ccc82
fixed condition in KeyPointsFilter::retainBest
12 years ago
Andrey Kamaev
ff7b604a25
Fix several inconsistent declarations identified by check_doc2 script
12 years ago
LeonidBeynenson
203849d5e4
The next attempt to fix a build error on Mac.
12 years ago
LeonidBeynenson
50cd5d9ce7
Try to fix Mac compilation issue.
12 years ago
LeonidBeynenson
b85a098d9c
Added float, uint64, and uchar params to Algorithm
...
Made changes to work in cv::Algorithm with parameters of these types.
Also fixed SimpleBlobDetector -- now it can be created by
cv::Algorithm::create and it can work with cv::Algorithm::set/get.
12 years ago
Vincent Rabaud
d235c3a678
define the default remapping in the right scope
12 years ago