码迷,mamicode.com
首页 > 编程语言 > 详细

推荐一个计算机视觉图书:python计算机视觉编程

时间:2015-06-29 22:17:28      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:计算机视觉   图书   

技术分享



编辑部的主页:好像没啥用

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又降低了进行计算机视觉相关研究的门槛啊
效果:


技术分享



版权声明:本文为博主原创文章,未经博主允许不得转载。

推荐一个计算机视觉图书:python计算机视觉编程

标签:计算机视觉   图书   

原文地址:http://blog.csdn.net/wangyaninglm/article/details/46687215

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!