Matlab提供了合并多个.fig文件的函数subplot(),通过调用subplot()函数可以将多个.fig合并为一个大的.fig文件。具体的工作原理是:subplot将画布划分为一个网格(grid),通过指定每个子fig文件的位置,将多个子fig合并为一个大的fig。该函数常用的方法如下:subplot(m,
n, p),m表示网格的行数,n表示网格的列数,p表示子fig文件在网格中的位...
分类:
其他好文 时间:
2015-07-24 06:56:24
阅读次数:
596
直方图均衡化
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('原始图像直方图')
subplot(2,2,3); imshow(B); title('均衡化图像...
分类:
其他好文 时间:
2015-07-17 21:09:05
阅读次数:
334
matlab怎么同时显示imshow 两幅图片matlab怎么同时显示imshow 两幅图片方法一:subplot()函数subplot(2,1,1);subplot(2,1,2);分上下或者左右显示两张图片...例如:原始图片分两个窗口显示:hehe=uint8(hehe);figure(1)im...
分类:
其他好文 时间:
2015-06-19 18:20:33
阅读次数:
165
from scipy import misc
import matplotlib.pyplot as plt
lena=misc.lena();print lena.shape
lena2=lena.repeat(3,axis=0).repeat(2,axis=1);print lena2.shape #resize
plt.figure(0)
plt.subplot(211)
plt.imsh...
分类:
其他好文 时间:
2015-06-04 17:12:10
阅读次数:
197
%梯度算子检测边缘用 MATLAB实现如下:
clc;clear;close;
I=imread('e:\role0\003i.bmp');
subplot(2,3,1);
imshow(I);
title('原始图像');
grid on; %显示网格线
axis on; %显示坐标系
I1=im2bw(I);...
分类:
其他好文 时间:
2015-05-12 15:41:36
阅读次数:
142
%膨胀操作
clc;clear;close;
I=imread('e:\role0\003i.bmp'); %载入图像
I1=rgb2gray(I);
subplot(1,2,1);
imshow(I1);
title('灰度图像')
grid on; %显示网格线
axis on; %显示坐标系
se=strel...
分类:
其他好文 时间:
2015-05-12 15:38:46
阅读次数:
147
%自动阈值法:Otsu法 用MATLAB实现Otsu算法:
clc;clear;close;
I=imread('e:\role0\003i.bmp');
subplot(1,2,1),imshow(I);
title('原始图像')
grid on; %显示网格线
axis on; %显示坐标系
level=graythres...
分类:
其他好文 时间:
2015-05-12 15:33:03
阅读次数:
173
% 16.腐蚀操作 MATLAB 实现腐蚀操作
clc;clear;close;
I=imread('e:\role0\003i.bmp'); %载入图像
I1=rgb2gray(I);
subplot(1,2,1);
imshow(I1);
title('灰度图像')
grid on; %显示网格线
axis on; ...
分类:
其他好文 时间:
2015-05-11 07:45:06
阅读次数:
128
a=[1,1.6,1.2,0.8,2.1];
subplot(1,2,1),pie(a,[1 0 1 0 0]),
legend({'1','2','3','4','5'})
subplot(1,2,2), b=int8(a==min(a)) ;pie3(a,b)
colormap(cool)...
分类:
其他好文 时间:
2015-05-11 07:44:41
阅读次数:
145
首先附上MATLAB代码:% 读入RGB图像并将其转换成灰度图像I=imread('pic12.jpg');I=rgb2gray(I);subplot(1,2,1);imshow(I)title('原始图像')% 数据类型转换,MATLAB不支持无符号数学的计算f=double(I); % 傅里叶....
分类:
其他好文 时间:
2015-04-30 19:34:58
阅读次数:
130