- 1、本文档共13页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
生物电子与影像术实验指导书2013
《生物电子与影像技术》
实验指导
哈尔滨工业大学(威海)控制科学与工程系
实验一:图像处理基本操作与灰度变换
1. 基础知识
Matlab支持的图像格式
TIFF, JEPG, GIF, BMP, PNG, XWD (X Window Dump),其中GIF不支持写。
与图像处理相关的最基本函数
读:imread; 写:imwrite; 显示:imshow; 信息查看:imfinfo;
Matlab支持的数据类型
double, unit8, int8, uint16, int16, uint32, int32, single, char (2 bytes per element), logical.
Matlab支持的图像类型
Intensity images, binary images, indexed images, RGB image
数据类及图像类型间的基本转换函数
数据类转换:B = data_class_name(A);
IPT图像数据类型转换函数:
函数名 输出图像数据类型 输入图像数据类型 im2uint8 uint8 logical, uint8, uint16, double im2uint16 uint16 logical, uint8, uint16, double mat2gray double([0, 1]) double im2doule double logical, uint8, uint16, double im2bw logical logical, uint8, uint16, double Matlab的灰度直方图函数
显示 imhist, 均衡化 histeq
Matlab的图像灰度变换
图像滤波 imfilter (image, filter) 灰度变换 imadjust
2. 图像信息显示与图像读写
imfinfo(parrots.bmp) %%图像文件信息显示
Filename: parrots.bmp
FileModDate: 27-Sep-2010 19:42:59
FileSize: 1179702
Format: bmp
FormatVersion: Version 3 (Microsoft Windows 3.x)
Width: 768
Height: 512
BitDepth: 24
ColorType: truecolor
… …
imfinfo(pollen.tif) %%图像文件信息显示
Filename: pollen.tif
FileModDate: 27-Sep-2010 19:42:59
FileSize: 250398
Format: tif
FormatVersion: []
Width: 500
Height: 500
BitDepth: 8
ColorType: grayscale
… …
img=imread(parrots.bmp); %%读入图像文件到内存变量
imshow(img); %%图像显示
whos img %%显示变量信息
Name Size Bytes Class
img 512x768x3 1179648 uint8 array
Grand total is 1179648 elements using 1179648 bytes
imwrite(img, NewParrots.png); %%以其它格式另外保存图像
img2=imread(pollen.tif);
whos img2
Name Size Bytes Class
img2 500x500 250000 uint8 array
Grand total is 250000 elements using 250000 bytes
figure, imshow(img2);
3. 直方图显示与均衡化
im=imread(pollen.tif); %%读入图像文件
size(im) %%观察2维还是3维
ans = %% 如果是3维,使用 im
文档评论(0)