资源简介
matlab课程设计源代码(肺实质的提取)
专为课程设计打造!!!
代码片段和文件信息
%% Segmentation of the CT image of lung
% This code reads a BMP image extract the part of lung
% and then dispaly the result.
%% Read the image data
im=imread(‘f.bmp‘);
im=rgb2gray(im);
[row column]=size(im);
imshow(im)
title(‘the Original Image‘)
%% Get the threshold for segmentation using iteration process
%get the maximun and minimun value of the vector
Gmax=max(max(im));
Gmin=min(min(im));
%supposing T0 is the threshold
T0=(Gmax+Gmin)/2;
%mean of both partsthen get the new threshold T1
M0=mean(im(find(im M1=mean(im(find(im>=T0)));
T1=(M0+M1)/2;
%get the appropriate threshold
%by no more then 5000 loops
for i=1:5000 %here gives the maximun numbers of trying
if T1~=T0
T0=T1;
M0=mean(im(find(im M1=mean(im(find(im>=T0)));
T1=(M0+M1)/2;
else break
end
end
thresh=T0
%% Segmentation
for index=1:row*column
if im(index)>thresh
im(index)=0;
end
end
figureimshow(im)
title(‘After Segmentation‘)
%make a copyusing to get the position
im0=im;
%% Extract
%divided the image into 2 parts
%foreground with 1background with 0
for index=1:row*column
if im0(index)~=0
im0(index)=1;
end
end
%transform im0 into ‘logical‘then label
%the part of lung has been labelled with 20
im0=logical(im0);
im0=bwlabel(im0);
%display the relational pixel
for i=1:row*column
if im0(i)~=20
im(i)=0;
end
end
figureimshow(im)
title(‘After Extract‘)
%% About
% *Authored* by Xiaol Z.
% Nov.12th2010.
% USST
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6791 2010-11-13 21:52 肺实质的提取\DataPackage\LungSeg.html
文件 1953 2010-11-13 21:52 肺实质的提取\DataPackage\LungSeg.png
文件 141233 2010-11-13 21:52 肺实质的提取\DataPackage\LungSeg_01.png
文件 111336 2010-11-13 21:52 肺实质的提取\DataPackage\LungSeg_02.png
文件 45978 2010-11-13 21:52 肺实质的提取\DataPackage\LungSeg_03.png
文件 470454 2009-10-13 17:25 肺实质的提取\f.bmp
文件 1634 2010-11-13 21:52 肺实质的提取\LungSeg.m
目录 0 2011-01-17 16:12 肺实质的提取\DataPackage
目录 0 2011-01-17 16:12 肺实质的提取
----------- --------- ---------- ----- ----
779379 9
- 上一篇:matlab实现图像的配准,手动选点
- 下一篇:超分辨率重建的matlab代码
相关资源
- 超分辨率重建的matlab代码
- matlab实现图像的配准,手动选点
- MATLAB DNA 编码
- 贝叶斯判别法的MATLAB实现
- 五种常用小波基含MATLAB实现
- 用matlab从0开始实现的一个多层感知机
- matlab 仿真 通信原理 多径衰落
- 通信原理-matlab仿真-增量调制
- 利用MATLAB读取HDF格式数据的实用方法
- 无刷直流电机仿真模型
- matlab多小波程序
- mti的matlab程序
- 控制系统设计实验软件开发
- 经典SIFT特征点提取MATLAB代码
-
MATLAB SIMUli
nk 的仿真算法 - PSO(粒子群算法)MATlab程序
- Mann-Kendall趋势检验程序-Matlab代码
- 啁啾光纤光栅matlab仿真源程序
- 基于双线性变换的切比雪夫II型高通滤
- MATLAB 实现RLE 对矩阵Z字形游程编码行
- MATLAB人口增长模型
- matlab 改变图片灰度级的函数
- 运动前景提取的matlab程序
- 神经网络的GUI可视化界面
- Matlab求解数独
- matlab 高斯过程回归模型 matlab Gaussia
- 系统聚类法及Matlab软件对系统聚类法
- matlab读取rinex观测文件
- 基于MATLAB的PID控制器参数整定及仿真
- 目标跟踪MATLAB
评论
共有 条评论