%直方图均衡化 MATLAB 程序实现如下:
I=imread('e:\role0\003i.bmp');
I=rgb2gray(I);
figure;
subplot(2,2,1);
imshow(I);
subplot(2,2,2);
imhist(I);
I1=histeq(I);
figure;
subplot(2,2,1);
imshow(I1);
subplot(2,2...
分类:
其他好文 时间:
2015-04-28 18:33:01
阅读次数:
144
%中值滤波器 用MATLAB实现中值滤波程序如下:
clc;clear;close;
I=imread('e:\role0\003i.bmp');
I=rgb2gray(I);
J=imnoise(I,'salt',0.02);
subplot(231),imshow(I);
title('原图像');
subplot(232),imshow(J);
title('添加椒盐噪声图像'); ...
分类:
其他好文 时间:
2015-04-28 16:09:01
阅读次数:
154
%自动阈值法: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-04-28 16:07:44
阅读次数:
264
http://jingyan.baidu.com/article/20b68a884d6272796cec62e0.htmlMatlab 自带的滤波函数edge fspecial 打开fspecial文件可以看到例子% I = imread('cameraman.tif');% subplot(2,...
分类:
其他好文 时间:
2015-04-24 18:24:51
阅读次数:
187
matplot 代码实例#!/usr/bin/env python# coding=utf-8import numpy as npimport matplotlib.pyplot as pltax = plt.subplot(111)t = np.arange(0,5,0.01)s = np.cos...
分类:
其他好文 时间:
2015-04-18 12:50:38
阅读次数:
213
1.如上图所示,直方图的坐标轴以及标题文字都颠倒了原因: 在MATLAB显示的subplot函数中,图像与直方图这些不属于一类,所以在显示的时候会出现这种情况解决办法:1>将图像与直方图分开显示,另外创建一个figure; 2>在figure对话框中,找到edit;将figure的属性中...
分类:
其他好文 时间:
2015-03-27 23:30:48
阅读次数:
108
#绘制三维图
import numpy as np
import mpl_toolkits.mplot3d
import matplotlib.pyplot as plt
x,y=np.mgrid[-2:2:20j,-2:2:20j]
z=x*np.exp(-x**2-y**2)
ax=plt.subplot(111,projection='3d')
ax.plot_surface(x,y,z,r...
分类:
其他好文 时间:
2015-01-04 17:10:27
阅读次数:
258
1.视点处理MATLAB提供了设置视点的函数view,其调用格式为:view(az,el)az为方位角,el为仰角。均以度为单位,系统默认视点为(-37.5,30) 例:从不同视点绘制多峰函数>> subplot(2,2,1);mesh(peaks);view(-37.5,30);%指定子图1的视....
分类:
其他好文 时间:
2015-01-01 23:41:45
阅读次数:
217
同matlab一样,matplot也可画散列图scatter。 1 import numpy as np 2 import matplotlib.pyplot as plt 3 #fig = plt.figure() 4 #ax = fig.add_subplot(111) 5 a1 = np.ar...
分类:
编程语言 时间:
2014-12-19 00:21:25
阅读次数:
527
A=imread('e:\1\1.tif');%读入图片“1.tif”B=rgb2gray(A);%将图像转换成灰度图像subplot(121);imshow(A);%显示原图像title('原图像');%命名subplot(122)imshow(B);%显示转换后的灰度图像title('转化后的灰...
分类:
其他好文 时间:
2014-12-03 20:49:46
阅读次数:
339