推薦一個計算機視覺圖書:python計算機視覺編程





編輯部的主頁:好像沒啥用

http://shop.oreilly.com/product/0636920022923.do



每章的代碼,github上面的:中文版

https://github.com/willard-yuan/pcv-book-code


github上面,英文版:

https://github.com/jesolem/PCV


項目主頁:

http://programmingcomputervision.com


中文在線的書:

http://www.ituring.com.cn/tupubarticle/2024?utm_source=tuicool



然后下載安裝
python(x,y)下載地址: https://code.google.com/p/pythonxy/

安裝好了以后,點擊自動的編輯器:




新建工程,插入代碼:

# -*- coding: utf-8 -*-
"""
Created on Mon Jun 29 21:36:11 2015

@author: season
"""

from PIL import Image;
from pylab import *;

im = array(Image.open('lena.jpg'))

imshow(im)

x = [100, 100, 400, 400]
y = [200, 500, 200, 500]
plot(x, y, 'r*')

plot(x[:2], y[:2])

#axis('off')

title('Plotting: "empire.jpg"')
show()


這個編輯器着實不錯,可以下斷點,單步調試啥的,完全滿足日常需要,python又降低了進行計算機視覺相關研究的門檻啊
效果:






免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM