通过plt.subplot能够在一张图中画出多个子图 #coding: utf-8 #!/usr/bin/env python """ Draw a graph with matplotlib. You must have matplotlib for this to work. """ __aut ...
分类:
编程语言 时间:
2017-08-08 22:52:06
阅读次数:
420
画个图花了我好久 1.选择5张,用subplot自动找到5个子图 2.三次循环,一个点一个点的画 3.颜色,颜色使用rgb,一个tuple直接把值丢进去 ...
分类:
其他好文 时间:
2017-07-29 12:50:22
阅读次数:
179
matplotlin 入门 1、启动: ipython --pylab 2、通常引入的约定是: import matplotlib.pyplot as plot 3、matplotlib的图像都位于Figure对象中,subplot是绘制在Figure上的子图表。 、 ...
分类:
其他好文 时间:
2017-06-28 02:02:12
阅读次数:
198
import pylab (or matplotlib.pyplot) as pl 创建图表 pl.figure(1) # 创建图表一 pl.figure(2) # 创建图表二 ······ sub_fig_211 = pl.subplot(211) # 在图表中创建子图 sub_fig_212 = ...
分类:
编程语言 时间:
2017-06-27 13:53:37
阅读次数:
197
下述代码若要运行,得在安装Python之外安装matplotlib、numpy、scipy、six等库,专门来看这篇小贴的朋友应该知道这些库。 参数331的意思是:将画布分割成3行3列,图像画在从左到右从上到下的第1块,如下图: 参数335的意思是:将画布分割成3行3列,图像画在从左到右从上到下的第 ...
分类:
其他好文 时间:
2017-06-04 16:51:10
阅读次数:
318
直方图均衡化 clear;close all; A=imread('lena_gray_512.tif'); B=imadjust(A); subplot(2,2,1); imshow(A); title('原始图像') subplot(2,2,2); imhist(A); title('原始图像直 ...
分类:
其他好文 时间:
2017-06-02 17:29:10
阅读次数:
189
给自己新挖个坑:开始刷cs231n深度学习。 看了一下导言的pdf,差缺补漏。 切片和索引 元组 创建空array 矩阵转置 plt subplot 以上 :) ...
分类:
其他好文 时间:
2017-05-21 21:49:16
阅读次数:
248
plt.savefig(‘test’, dpi = 600) :将绘制的图画保存成png格式,命名为 test plt.ylabel(‘Grade’) : y轴的名称 plt.axis([-1, 10, 0, 6]) : x轴起始于-1,终止于10 ,y轴起始于0,终止于6 plt.subplot( ...
分类:
编程语言 时间:
2017-05-03 17:24:23
阅读次数:
190
图像反转 I=imread('nickyboom.jpg'); J=double(I); J=-J+(256-1); %图像反转线性变换 H=uint8(J); subplot(1,2,1),imshow(I); subplot(1,2,2),imshow(H); 直方图均衡化 MATLAB 程序实 ...
分类:
其他好文 时间:
2017-04-23 10:46:15
阅读次数:
306
1 from matplotlib.pyplot import * 2 x = [1, 2, 3, 4] 3 y = [5, 4, 3, 2] 4 5 figure() 6 subplot(231) 7 plot(x,y) 8 9 subplot(232) 10 bar(x,y) 11 12 sub... ...
分类:
其他好文 时间:
2017-03-12 01:13:30
阅读次数:
170