91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

這是“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

評論

共有 條評論