推薦一個電腦視覺圖書:python電腦視覺編程

來源:互聯網
上載者:User

標籤:電腦視覺   圖書   




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

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/PIL windows下安裝地址:http://effbot.org/downloads/PIL-1.1.7.win32-py2.7.exe
安裝好了以後,點擊自動的編輯器:



建立工程,插入代碼:
# -*- 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又降低了進行電腦視覺相關研究的門檻啊
效果:



著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

推薦一個電腦視覺圖書:python電腦視覺編程

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.