• 大小: 6.91M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-12
  • 语言: Matlab
  • 标签: PDE边界  matlab  pde  

资源简介

包含五个文件夹。 (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个文件信息

评论

共有 条评论