1、图像抖动 处理结果 = dither(原始图像) %% 图像抖动 I = imread('cameraman.tif'); subplot(1,2,1),imshow(I); J = dither(I); subplot(1,2,2),imshow(J); 2、数字水印 (1)嵌入水印的过程: ...
分类:
其他好文 时间:
2020-05-14 01:48:38
阅读次数:
75
1. subplot() 绘制网格区域中几何形状相同的子区布局 函数签名有两种: 都是整数,意思是将画布划分为C行R列个子区,此时定位到第N个子区上,子区编号按照行优先排序。 下面就是最喜爱的举例环节 【Example 1】 【Example 2】 非等分画布可以多次使用等分画布来实现 2. sub ...
分类:
编程语言 时间:
2020-05-13 00:29:06
阅读次数:
138
1、边缘检测 ① 处理结果 = edge(原始图像,算子) 算子: Sobel log Roberts Canny Prewitt zerocross %% 边缘检测 I = imread('cameraman.tif'); J1 = edge(I,'Sobel'); subplot(3,3,1), ...
分类:
其他好文 时间:
2020-05-11 12:56:50
阅读次数:
88
%脉冲信号t1=linspace(0,1,101);y1=[zeros(1,50),1,zeros(1,50)];subplot(3,2,1);plot(t1,y1); %阶跃信号t2=linspace(0,1,101);y2=[zeros(1,50),ones(1,51)];subplot(3,2 ...
分类:
其他好文 时间:
2020-05-08 23:12:32
阅读次数:
103
Sobel边缘检测(2)-matlab clcclearclear all close all%%%对图像做均值滤波处理img = imread('1.png');figure(1)subplot(1,2,1),imshow(img),title('原始图像')%%%将彩色图像转灰度图像img_gr ...
分类:
其他好文 时间:
2020-05-08 18:16:07
阅读次数:
83
如何创建轴的网格状组合。 subplots()也许用于创建图形和轴的主要功能。它也类似于matplotlib.pyplot.subplot(),但是会立即在图形上创建并放置所有轴。 GridSpec指定将放置子图的网格的几何形状。需要设置网格的行数和列数。可选地,可以调整子图布局参数(例如,左,右等 ...
分类:
其他好文 时间:
2020-04-25 22:01:34
阅读次数:
93
mport numpy as np import matplotlib.pyplot as plt #散点图 #scatter fig=plt.figure() #fig.add_subplot(3,3,1)#上下两种方法都可以 ax=fig.add_subplot(3,3,1) n=128 #正态 ...
分类:
其他好文 时间:
2020-04-13 00:56:25
阅读次数:
194
ax.legend()作用:在图上标明一个图例,用于说明每条曲线的文字显示 import matplotlib.pyplot as plt import numpy as np x = np.arange(10) fig = plt.figure() ax = plt.subplot(111) fo ...
分类:
编程语言 时间:
2020-04-05 22:17:33
阅读次数:
545
fig,ax = plt.subplots()等价于:fig = plt.figure()ax = fig.add_subplot(1,1,1)fig, ax = plt.subplots(1,3),其中参数1和3分别代表子图的行数和列数,一共有 1x3 个子图像。函数返回一个figure图像和子图 ...
分类:
其他好文 时间:
2020-04-05 22:01:14
阅读次数:
99
导入Matplotlib库 import matplotlib.pyplot as plt Figure对象:创建画布 subplot()函数 划分子图 设置中文字体 plt.rcParams["font.sans-serif"] = "SimHei" 添加标题 添加全局标题 suptitle(标题 ...
分类:
其他好文 时间:
2020-03-18 23:40:02
阅读次数:
81