user376089
user376089

Reputation: 1265

SIFT keypoint detector

It seems that nothing changes on a jpg file after running the SIFT demo program here http://www.cs.ubc.ca/~lowe/keypoints/. Does anyone know how it works?

Thanks a lot.

Upvotes: 0

Views: 1510

Answers (2)

Baran Barani
Baran Barani

Reputation: 21

@Gary Tsui: can we use SIFT to search for similar parts in one image? If we copy some part of the image and paste it to another part of the same image, is there possibility to detect copy - pasted area by using SIFT ?

Upvotes: 0

Gary Tsui
Gary Tsui

Reputation: 1755

SIFT is an algorithm that generate keypoints based on its renowned automatic feature detection capabilities. Those keypoints would most likely be taken to compare with or match against other images. The image itself is not being modified. Rather, we are looking for 'distinguishable clusters of pixels' so that it would 1) distinguish itself from other pictures 2) liken itself to similar images. I have used this beautifully crafted algorithm in several occasions in my research. If you need more clarifications, let me know.

Upvotes: 3

Related Questions