python计算机视觉Chapter1 fig1-2

代码:

# -*- coding: utf-8 -*-
"""
created on Friday June 22 16:48 2018
@author: Jerry
"""
# 使用 Matplotlib 绘制点和线
from PIL import Image
from pylab import *
# 添加中文字体支持
import matplotlib as mpl
font = mpl.font_manager.FontProperties(fname='/python_work/SimHei.ttf')
# 读取图像到数组中
im = Image.open('empire.jpg')
# 四个点坐标
x = [100,100,400,400]
y = [200,500,200,500]
# 画出四个点
plot(x,y,'r*')
# 画出前两个点的连线
plot(x[:2],y[:2])
imshow(im)
title(u'绘图',fontproperties=font)
axis('off')
show()

结果展示:
python计算机视觉Chapter1 fig1-2_第1张图片

你可能感兴趣的:(python计算机视觉编程,python计算机视觉编程)