diff options
author | leochanj105 <leochanj@live.unc.edu> | 2020-10-19 23:09:30 -0400 |
---|---|---|
committer | leochanj105 <leochanj@live.unc.edu> | 2020-10-20 02:40:39 -0400 |
commit | f618466c25d43f3bae9e40920273bf77de1e1149 (patch) | |
tree | 460e739e2165b8a9c37a9c7ab1b60f5874903543 /SD-VBS/benchmarks/sift/src/matlab/sift_overview.m | |
parent | 47ced4e96bbb782b9e780e8f2cfc637b2c21ff44 (diff) |
initial sd-vbs
initial sd-vbs
add sd-vbs
sd-vbs
Diffstat (limited to 'SD-VBS/benchmarks/sift/src/matlab/sift_overview.m')
-rw-r--r-- | SD-VBS/benchmarks/sift/src/matlab/sift_overview.m | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/SD-VBS/benchmarks/sift/src/matlab/sift_overview.m b/SD-VBS/benchmarks/sift/src/matlab/sift_overview.m new file mode 100644 index 0000000..71557e4 --- /dev/null +++ b/SD-VBS/benchmarks/sift/src/matlab/sift_overview.m | |||
@@ -0,0 +1,33 @@ | |||
1 | % SIFT_OVERVIEW Scale-Invariant Feature Transfrom | ||
2 | % | ||
3 | % This is a MATLAB/C implementation of SIFT detector and descriptor | ||
4 | % [1]. You can: | ||
5 | % | ||
6 | % * Use SIFT() to detect the SIFT frames (keypoints) of a given image | ||
7 | % and compute their descriptors. Then you can use SIFTMATCH() to | ||
8 | % match the descriptors. | ||
9 | % | ||
10 | % * Use PLOTSS(), PLOTSIFTDESCRIPTOR(), PLOTSIFTFRAME(), | ||
11 | % PLOTMATCHES() to visualize the results. | ||
12 | % | ||
13 | % As SIFT is implemented by several reusable M and MEX files, you can | ||
14 | % also run portions of the algorithm, or change them. Specifically, | ||
15 | % you can: | ||
16 | % | ||
17 | % * Use SIFTDESCRIPTOR() to compute the SIFT descriptor from a list | ||
18 | % of frames and a scale space or plain image. | ||
19 | % | ||
20 | % * Use GAUSSIANSS() and DIFFSS() to compute the Gaussian and DOG | ||
21 | % scale spaces. | ||
22 | % | ||
23 | % * Use SIFTLOCALMAX(), SIFTREFINEMX(), SIFTORMX() to manually | ||
24 | % extract the SIFT frames from the DOG scale space. More in | ||
25 | % general, you can use SIFTLOCALMAX() to find maximizers of any | ||
26 | % multi-dimensional arrays. | ||
27 | % | ||
28 | % REFERENCES | ||
29 | % [1] D. G. Lowe, "Distinctive image features from scale-invariant | ||
30 | % keypoints," IJCV, vol. 2, no. 60, pp. 91 110, 2004. | ||
31 | % | ||
32 | % See also PDF:SIFT.INTRODUCTION. | ||
33 | |||