Ask Your Question
0

sift extract keypoints

asked Mar 11 '13

marwa allam gravatar image

updated Mar 11 '13

i want to know how sift extract keypoints from image? or how these lines work?

% Call keypoints executable
if isunix
   command = '!./sift ';
else
   command = '!siftWin32 ';%this on
end
command = [command ' <tmp.pgm >tmp.key'];
eval(command);%fill data of tmp.pgm in tmp.key
Preview: (hide)

1 answer

Sort by » oldest newest most voted
1

answered Mar 11 '13

Please be so kind to read through this paper: http://www.cs.ubc.ca/~lowe/papers/ijcv04.pdf

It is the original paper by David Löwe describing the principle behind SIFT features. It will show you what actually happens.

Preview: (hide)

Question Tools

Stats

Asked: Mar 11 '13

Seen: 796 times

Last updated: Mar 11 '13