资源简介

运用偏微分方程(PDE)方法进行图像处理的matlab程序,包括图像滤波、图像分割、插值、图像增强、恢复及一些方程组求解等在偏微分方法处理图像处理领域常用且重要的处理程序,供大家学习。

资源截图

代码片段和文件信息

%%% 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   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3419  2007-12-11 18:04  MATLAB_Program\AMLE_level_set_interp.m

     文件       2027  2007-12-12 07:39  MATLAB_Program\C_V.m

     文件       2941  2007-12-10 19:57  MATLAB_Program\Color_dirct_Diff.m

     文件       3443  2007-12-10 20:01  MATLAB_Program\GAC_upwind.m

     文件       3745  2007-12-09 21:28  MATLAB_Program\MCM_explicit.m

     文件       4269  2007-12-11 18:14  MATLAB_Program\Mag_Color_Snake.m

     文件       4522  2007-12-10 20:11  MATLAB_Program\Multilayer_Contrast_Enhance.m

     文件       1947  2007-12-09 16:48  MATLAB_Program\P_L_HE_f.m

     文件       2394  2007-12-10 16:29  MATLAB_Program\P_M_AOS.m

     文件       1712  2008-03-31 16:46  MATLAB_Program\TV_resto.m

     文件        633  2007-12-11 18:07  MATLAB_Program\Thomas.m

     文件        848  2007-12-11 09:13  MATLAB_Program\bilinear_interpolat2.m

     文件       1184  2007-12-07 16:41  MATLAB_Program\biquad_interpolat.m

     文件       1259  2007-12-10 20:03  MATLAB_Program\createimage.m

     文件       1279  2007-12-17 07:55  MATLAB_Program\curve_linear_heat_flow.m

     文件       1152  2007-12-09 13:36  MATLAB_Program\gauss.m

     目录          0  2009-03-13 14:26  MATLAB_Program

----------- ---------  ---------- -----  ----

                36774                    17


评论

共有 条评论