vlfeat-sift+python+mac

vlfeat主頁(yè):http://www.vlfeat.org/

使用方法:command line 使用方法

from:http://www.vlfeat.org/install-shell.html

1.下載vlfeat二進(jìn)制包解壓

2.在.bash_profile添加./vlfeat/bin/macui64/sift路徑 詳見鏈接

3.因?yàn)槲矣玫膙irtualenv 添加path一直有問題 不生成***.sift文件 后來直接在def process_image cmmd中用的絕對(duì)路徑

vlfeat-sift代碼:

from:http://www.maths.lth.se/matematiklth/personal/solem/downloads/vlfeat.py

效果:我把ratio改小了一些


from PIL import Image

import os

from numpy import *

from pylab import *

def process_image(imagename,resultname,params="--edge-thresh 10 --peak-thresh 5"):

""" process an image and save the results in a file"""

if imagename[-3:] != 'pgm':

#create a pgm file

im = Image.open(imagename).convert('L')

im.save('tmp.pgm')

imagename = 'tmp.pgm'

cmmd = str("sift "+imagename+" --output="+resultname+

" "+params)

os.system(cmmd)

print 'processed', imagename, 'to', resultname

def read_features_from_file(filename):

""" read feature properties and return in matrix form"""

f = loadtxt(filename)

return f[:,:4],f[:,4:] # feature locations, descriptors

def write_features_to_file(filename,locs,desc):

""" save feature location and descriptor to file"""

savetxt(filename,hstack((locs,desc)))

def plot_features(im,locs,circle=False):

""" show image with features. input: im (image as array),

locs (row, col, scale, orientation of each feature) """

def draw_circle(c,r):

t = arange(0,1.01,.01)*2*pi

x = r*cos(t) + c[0]

y = r*sin(t) + c[1]

plot(x,y,'b',linewidth=2)

imshow(im)

if circle:

[draw_circle([p[0],p[1]],p[2]) for p in locs]

else:

plot(locs[:,0],locs[:,1],'ob')

axis('off')

def match(desc1,desc2):

""" for each descriptor in the first image,

select its match in the second image.

input: desc1 (descriptors for the first image),

desc2 (same for second image). """

desc1 = array([d/linalg.norm(d) for d in desc1])

desc2 = array([d/linalg.norm(d) for d in desc2])

dist_ratio = 0.6

desc1_size = desc1.shape

matchscores = zeros((desc1_size[0],1))

desc2t = desc2.T #precompute matrix transpose

for i in range(desc1_size[0]):

dotprods = dot(desc1[i,:],desc2t) #vector of dot products

dotprods = 0.9999*dotprods

#inverse cosine and sort, return index for features in second image

indx = argsort(arccos(dotprods))

#check if nearest neighbor has angle less than dist_ratio times 2nd

if arccos(dotprods)[indx[0]] < dist_ratio * arccos(dotprods)[indx[1]]:

matchscores[i] = int(indx[0])

return matchscores

def appendimages(im1,im2):

""" return a new image that appends the two images side-by-side."""

#select the image with the fewest rows and fill in enough empty rows

rows1 = im1.shape[0]

rows2 = im2.shape[0]

if rows1 < rows2:

im1 = concatenate((im1,zeros((rows2-rows1,im1.shape[1]))), axis=0)

elif rows1 > rows2:

im2 = concatenate((im2,zeros((rows1-rows2,im2.shape[1]))), axis=0)

#if none of these cases they are equal, no filling needed.

return concatenate((im1,im2), axis=1)

def plot_matches(im1,im2,locs1,locs2,matchscores,show_below=True):

""" show a figure with lines joining the accepted matches

input: im1,im2 (images as arrays), locs1,locs2 (location of features),

matchscores (as output from 'match'), show_below (if images should be shown below). """

im3 = appendimages(im1,im2)

if show_below:

im3 = vstack((im3,im3))

# show image

imshow(im3)

# draw lines for matches

cols1 = im1.shape[1]

for i in range(len(matchscores)):

if matchscores[i] > 0:

plot([locs1[i,0], locs2[matchscores[i,0],0]+cols1], [locs1[i,1], locs2[matchscores[i,0],1]], 'c')

axis('off')

def match_twosided(desc1,desc2):

""" two-sided symmetric version of match(). """

matches_12 = match(desc1,desc2)

matches_21 = match(desc2,desc1)

ndx_12 = matches_12.nonzero()[0]

#remove matches that are not symmetric

for n in ndx_12:

if matches_21[int(matches_12[n])] != n:

matches_12[n] = 0

return matches_12

if __name__ == "__main__":

process_image('box.pgm','tmp.sift')

l,d = read_features_from_file('tmp.sift')

im = array(Image.open('box.pgm'))

figure()

plot_features(im,l,True)

gray()

process_image('scene.pgm','tmp2.sift')

l2,d2 = read_features_from_file('tmp2.sift')

im2 = array(Image.open('scene.pgm'))

m = match_twosided(d,d2)

figure()

plot_matches(im,im2,l,l2,m)

gray()

show()

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子桑涎,更是在濱河造成了極大的恐慌逃顶,老刑警劉巖具则,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件三圆,死亡現(xiàn)場(chǎng)離奇詭異鸽扁,居然都是意外死亡谁撼,警方通過查閱死者的電腦和手機(jī)歧胁,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來厉碟,“玉大人喊巍,你說我怎么就攤上這事」抗模” “怎么了崭参?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)款咖。 經(jīng)常有香客問我何暮,道長(zhǎng)奄喂,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任海洼,我火速辦了婚禮跨新,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘贰军。我一直安慰自己玻蝌,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布词疼。 她就那樣靜靜地躺著俯树,像睡著了一般。 火紅的嫁衣襯著肌膚如雪贰盗。 梳的紋絲不亂的頭發(fā)上许饿,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音舵盈,去河邊找鬼陋率。 笑死,一個(gè)胖子當(dāng)著我的面吹牛秽晚,可吹牛的內(nèi)容都是我干的瓦糟。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼赴蝇,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼菩浙!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起句伶,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤劲蜻,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后考余,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體先嬉,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年楚堤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了疫蔓。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡身冬,死狀恐怖鳄袍,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情吏恭,我是刑警寧澤,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布重罪,位于F島的核電站樱哼,受9級(jí)特大地震影響哀九,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜搅幅,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一阅束、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧茄唐,春花似錦息裸、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至蚁廓,卻和暖如春访圃,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背相嵌。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來泰國(guó)打工腿时, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人饭宾。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓批糟,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親看铆。 傳聞我的和親對(duì)象是個(gè)殘疾皇子徽鼎,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容