-
Notifications
You must be signed in to change notification settings - Fork 10
/
README.txt
33 lines (24 loc) · 1.1 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
A LIGHTWEIGHT C++ IMPLEMENTATION OF
DAVID LOWE'S SCALE INVARIANT FEATURE TRANSFORMS
Andrea Vedaldi
http://www.cs.ucla.edu/~vedaldi
WARNING
This software is derived from a SIFT implementation which should be
rather stable. However this particular version should still be
considered a beta release as:
* the command line driver sift-driver.cpp missess a few options to
tune some parameters of the descriptor;
* there are some new pieces of code (the command line driver,
loading/saving PGM files, ...) which may contain bugs and
* I didn't have time to test throughfully.
COPYRIGHT WARNING
This code implements an algorithm (SIFT) which is D. Lowe's patent
and cannot be used for commercial purposes without his
permission. See the license notice attached to the source code
files.
CHANGES
0.2.2 Corrected a bug in the resolution of the 3x3 linear system.
(thanks to Fan Gu for finding it out)
0.2.1 Corrected a bug in the command line driver.
0.2 Made LAPACK independent
0.1 First alpha version