资源简介
这是“Implicit Active Contours Driven by Local Binary Fitting Energy”(简称LBF模型)的MATLAB源代码。LBF模型是非常重要局部区域活动轮廓模型,它被广泛使用于各个领域,如MRI大脑图像分割,血管图像分割,图像偏差场纠正。
代码片段和文件信息
% This Matlab file demomstrates a level set algorithm based on Chunming Li et al‘s paper:
% “Implicit Active Contours Driven By Local Binary Fitting Energy“ in Proceedings of CVPR‘07
clc;clear all;close all;
c0 =2;
imgID=2;
Img=imread(‘vessel3.bmp‘);
%Img=imread(‘vessel2.bmp‘); % uncommont this line to use ther other vessel image
I=Img(::1);
Img=double(Img);
switch imgID
case 1
phi= ones(size(Img(::1))).*c0;
a=43;b=51;c=20;d=28;
phi(a:bc:d) = -c0;
figure;
imshow(I);colormap;
hold on;
plotLevelSet(phi 0 ‘g‘);
hold off;
case 2
[mn]=size(Img(::1));
a=m/2; b=n/2;r=5;
phi= ones(mn).*c0;
phi(a-r:a+rb-r:b+r) = -c0;
imshow(I);colormap;
hold on;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-03-17 15:50 LBF(Matlab)\
文件 2117 2011-03-17 15:49 LBF(Matlab)\DemoLBF.m
文件 1689 2011-03-17 15:49 LBF(Matlab)\EVOL_LBF.m
文件 30654 2008-12-17 10:21 LBF(Matlab)\I5.bmp
文件 20338 2007-08-08 23:31 LBF(Matlab)\mri_nonuniform.bmp
文件 7078 2007-08-16 17:13 LBF(Matlab)\noisyNonUniform.bmp
文件 337 2005-10-08 14:18 LBF(Matlab)\plotLevelSet.m
文件 13398 2007-08-16 17:46 LBF(Matlab)\vessel2.bmp
文件 14702 2007-08-16 17:03 LBF(Matlab)\vessel3.bmp
文件 1162 2008-04-02 11:29 LBF(Matlab)\灰度不均.jpg
相关资源
- 基于颜色的聚类分割matlab
- 基于lab空间的图像分割
- MATLAB大脑腔体图像分割
- LAB空间分别提取红色、绿色、紫色、
- MATLAB 图像处理识别程序
- 图像显著性MR方法的matlab代码
- 图像分割matlab
- 模糊聚类图像分割FCM/FLICM等
- matlab 车牌定位与分割 详细注释
- ASM二维图像分割MATLAB代码
- matlab 静态图像分割
- 基于MATLAB面部的人数统计系统[戴口罩
- 基于信息熵方法的多阈值图像分割算
- KFCM与FCM进行脑电图分割
- 超像素分割matlab代码
- 纹理图像分割Matlab源代码 PDF PPT
- 基于变分水平集的图像分割
- MATLAB简介+图像轮廓线提取+图像分割技
- 遗传算法图像分割matlab+源代码
- 用matlab写的图像分割的代码
- 视频镜头分割及关键帧提取MATLAB
- MRI图像分割
- 基于颜色的图像分割算法MATLAB代码
- 一种效果极好的交互式图像分割算法
- GVFSnake(matlab)边缘检测和图像分割
- LBF和LDF模型的matlab程序,用于图像分
- 扫描文件的光学字符分割文字分割M
- 图像分割分形算法
- 基于形态学的图像分割算法研究
- 基于Matlab实现的图像分割的常用算法
评论
共有 条评论