推荐一个计算机视觉图书: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/
 
安装好了以后,点击自动的编辑器:
 
 
 
 
新建工程,插入代码:
 
[python] view plain copy
 
 print?
  1. # -*- coding: utf-8 -*-  
  2. """ 
  3. Created on Mon Jun 29 21:36:11 2015 
  4.  
  5. @author: season 
  6. """  
  7.   
  8. from PIL import Image;  
  9. from pylab import *;  
  10.   
  11. im = array(Image.open('lena.jpg'))  
  12.   
  13. imshow(im)  
  14.   
  15. x = [100, 100, 400, 400]  
  16. y = [200, 500, 200, 500]  
  17. plot(x, y, 'r*')  
  18.   
  19. plot(x[:2], y[:2])  
  20.   
  21. #axis('off')  
  22.   
  23. title('Plotting: "empire.jpg"')  
  24. show()  
 
 
这个编辑器着实不错,可以下断点,单步调试啥的,完全满足日常需要,python又降低了进行计算机视觉相关研究的门槛啊
效果:
 
 
 
 
posted @ 2016-05-18 19:52  xiaoming123abc  阅读(1417)  评论(0编辑  收藏  举报