資源簡介
包含五個文件夾。
(1)MATLAB程序:其中包含10余個MATLAB程序或(函數)的源代碼。程序中所作的注釋,與書中關于對應算法的描述是一致的 (2)二值圖像:其中的圖像可供形態學圖像處理實驗用,也可通過提取對象
代碼片段和文件信息
%%%?This?program?implement?image?interpolation?by?AMLE?method.?Firstly?get
%%%?a?number?of?level?sets?from?an?input?image?by?thresholdding.?The?threshold
%%%?values?are?chosen?automatically.?Then?the?boundaries?for?each?level?set
%%%?are?extracted?the?image?data?on?the?boundaries?are?recorded.?Finally?
%%%?by?using?AMLE?extend?those?imformation?to?reconstract?a?new?image
%%%?which?will?approximate?the?original?one?quitr?well.
clear?all;
close?all;
clc;
Img?=?imread(‘lady.bmp‘);
Img=rgb2gray(Img);
figure(1);imshow(uint8(Img));
[ny?nx]?=?size(Img);
N=12;??????????????????????????%?A?presetting?parameter--Number?of?level_sets
h=imhist(Img)/(ny*nx);
D_max([1:N])=0;?????????????????
count([1:N])=0;????????????????
start=0;s=0.0;?
for?n=1:N?
???for?d=start:255???
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????11902??2007-12-13?04:48??圖像處理的偏微分方程法(光盤)\Binary?Images\Africa.bmp
?????文件???????2222??2003-11-06?13:26??圖像處理的偏微分方程法(光盤)\Binary?Images\dyCurve.bmp
?????文件??????17586??2007-12-05?23:03??圖像處理的偏微分方程法(光盤)\Binary?Images\fish1.bmp
?????文件??????18934??2007-12-06?02:10??圖像處理的偏微分方程法(光盤)\Binary?Images\fish2.bmp
?????文件??????17586??2007-12-06?02:12??圖像處理的偏微分方程法(光盤)\Binary?Images\fish3.bmp
?????文件??????19270??2007-12-06?02:14??圖像處理的偏微分方程法(光盤)\Binary?Images\fish4.bmp
?????文件??????17926??2007-12-06?02:17??圖像處理的偏微分方程法(光盤)\Binary?Images\fish5.bmp
?????文件??????17898??2007-12-06?02:18??圖像處理的偏微分方程法(光盤)\Binary?Images\fish6.bmp
?????文件??????17462??2003-11-05?13:19??圖像處理的偏微分方程法(光盤)\Binary?Images\tooth.bmp
?????文件?????196662??2003-11-07?07:54??圖像處理的偏微分方程法(光盤)\Color?Images\Autumn.bmp
?????文件??????45414??2007-12-09?05:14??圖像處理的偏微分方程法(光盤)\Color?Images\balloon.bmp
?????文件?????196662??2003-11-07?08:19??圖像處理的偏微分方程法(光盤)\Color?Images\Bird.bmp
?????文件?????196662??2003-11-07?07:54??圖像處理的偏微分方程法(光盤)\Color?Images\Bridge.bmp
?????文件?????196662??2003-11-07?07:55??圖像處理的偏微分方程法(光盤)\Color?Images\Butterfly.bmp
?????文件??????65938??2007-12-09?03:09??圖像處理的偏微分方程法(光盤)\Color?Images\castle.bmp
?????文件?????196662??2003-11-07?07:53??圖像處理的偏微分方程法(光盤)\Color?Images\Eagle.bmp
?????文件?????196662??2003-11-05?12:22??圖像處理的偏微分方程法(光盤)\Color?Images\fighter.bmp
?????文件???????6294??2007-12-09?03:53??圖像處理的偏微分方程法(光盤)\Color?Images\lake.bmp
?????文件?????436350??2007-04-29?04:40??圖像處理的偏微分方程法(光盤)\Color?Images\nebula.bmp
?????文件?????196662??2003-11-07?08:21??圖像處理的偏微分方程法(光盤)\Color?Images\Panda.bmp
?????文件?????196662??2003-11-05?12:25??圖像處理的偏微分方程法(光盤)\Color?Images\pepper.bmp
?????文件??????69750??2007-12-09?05:10??圖像處理的偏微分方程法(光盤)\Color?Images\rose.bmp
?????文件??????93654??2007-12-09?05:15??圖像處理的偏微分方程法(光盤)\Color?Images\toy.bmp
?????文件??????60402??2007-11-03?04:17??圖像處理的偏微分方程法(光盤)\Color?Images\TV_color_square.bmp
?????文件???????9846??2007-09-15?22:12??圖像處理的偏微分方程法(光盤)\Color?Images\water_lilies.bmp
?????文件?????120054??2006-04-22?01:07??圖像處理的偏微分方程法(光盤)\Gray?Images\3.bmp
?????文件??????41214??2007-12-02?22:19??圖像處理的偏微分方程法(光盤)\Gray?Images\brain.bmp
?????文件??????77494??2007-12-09?21:35??圖像處理的偏微分方程法(光盤)\Gray?Images\brain_v.bmp
?????文件??????66614??2003-11-07?10:16??圖像處理的偏微分方程法(光盤)\Gray?Images\Carving.bmp
?????文件??????17462??2003-05-05?11:22??圖像處理的偏微分方程法(光盤)\Gray?Images\chrom.bmp
............此處省略47個文件信息
評論
共有 條評論