码迷,mamicode.com
首页 >  
搜索关键字:subplot    ( 141个结果
平滑均值滤波讲解-Matlab
具体说明参考上一篇文章: Matlab代码: %平滑均值滤波-Lab10 file='Datanog7'; x=importdata([file,'/A_x.txt']); subplot(2,1,1); plot(x); b=filter2(fspecial('average',10),x)/255; subplot(2,1,2); plot(b); 效果图:...
分类:其他好文   时间:2014-11-28 16:21:55    阅读次数:220
图形窗口的分割
在同一个图形窗口绘制若干个独立的图形,同一窗口中的不同图形称为子图。MATLAB系统提供了subplot函数,用来将当前图形窗口分割成若干个绘图区。每个区域有独立坐标系,是独立子图。原理:通过subplot函数激活某一区,该区为活动区,所发出的绘图命令都是作用于活动区。subplot的调用格式:su...
分类:其他好文   时间:2014-11-02 22:23:07    阅读次数:232
Matlab数字信号处理
产生方波cleart=0:0.01:10;subplot(4,1,1)f1=square(t); % 产生周期为2pi的方波信号plot(t,f1)axis([0,10,-1.2,1.2])subplot(4,1,2)f2=square(t,30); % 产生周期为2pi,占空比为3...
分类:其他好文   时间:2014-10-27 00:24:43    阅读次数:169
MATLAB light material lighting
clf;[X,Y,Z]=sphere(40);colormap(jet)subplot(1,2,1),surf(X,Y,Z),axis off square,shading interplight('position',[0 -10 1.5],'style','infinite')material ...
分类:其他好文   时间:2014-10-22 12:26:53    阅读次数:221
Matlab中三点确定质心
clear all;close all;clc;img=imread('E:\4.jpg');subplot(121);imshow(img);[x y]=size(img);%求像素大小!x=243,y=1026img=double(img);%将img变成double类型的%%sobel边缘检测...
分类:其他好文   时间:2014-09-10 20:59:01    阅读次数:601
几个简单的图像转换MATLAB代码
1、将索引图像为RGB图像[X,map]=imread('spine.tif');figure;subplot(121);imshow(X,hot(64));rgb=ind2rgb(X,map);subplot(122);imshow(rgb);2、将矩阵转换为灰度图像>> I=[1 2 3;4 5...
分类:其他好文   时间:2014-09-07 18:30:05    阅读次数:229
RGB 与 (RGB转 YCbCr再转为 RGB)的图像
RGB 与 (RGB转 YCbCr再转为 RGB)的图像   不可逆,可以从 矩阵的逆运算看出来。 附上 matlab 代码:         clc,clear; Source=imread('1.jpg');%读入原始RGB图像 figure(1); subplot(1,2,1); imshow(Source):title('original image');%显示图像 [r c d]=...
分类:其他好文   时间:2014-08-28 19:51:25    阅读次数:292
【于燕飞韩丽丽】边缘检测代码
im=imread('C:\Documents and Settings\Administrator\桌面\2.jpg');Subplot(231);imshow(im);title('原始图像');ii=rgb2gray(im);%ii=im2double(ii);Subplot(232);ims...
分类:其他好文   时间:2014-07-27 09:43:42    阅读次数:475
Matlab实现图像分割
下面使用极小值点阈值选取方法,编写MATLAB程序实现图像分割的功能。 极小值点阈值选取法即从原图像的直方图的包络线中选取出极小值点, 并以极小值点为阈值将图像转为二值图像 clear all; close all ; G=imread('rabbit.png'); figure(); subplot(2,2,1); imshow(G); subplot(2,2,2); imhist(G...
分类:其他好文   时间:2014-06-15 15:03:26    阅读次数:293
matlab实现的手写体字符截取字符区域的方法
在提取手写体字符特征中如何更好的截取图像中字符区域是很重要的事。 下面就给出一种截取字符区域的方法,以使字符在图像中占据更多的位置                 A=imread(filename);                 subplot(2,2,1);                 imshow(A);                 [N,M]=size(A);   ...
分类:其他好文   时间:2014-05-25 21:29:40    阅读次数:328
141条   上一页 1 ... 12 13 14 15 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!