Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - matlab level
Search - matlab level - List

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Update : 2008-07-07 Size : 227.42kb Publisher : jasonchang

Radar Signal Analysis and Processing Using MATLAB is written so that it can be used as a reference book or as a textbook for two graduate level courses with emphasis on signals and signal processing. Instructors using this book as a text may choose the following chapter breakdown for their curriculum. Chap- ters 1 through Chapter 7 can be used for the first course, while Chapters 8 through 11 may be used for the second course. Chapter 11 (Target Tracking), Chapter 12 (Synthetic Aperture Radar), and Chapter 13 (Radar Cross Section) (R) from my other book Radar Systems Analysis and Design Using MATLAB may also be used to supplement both courses.
Update : 2011-12-05 Size : 5.63mb Publisher : lgxman

等高线拟合源代码(matlab源码),老外编的,水平确实可以,佩服。里面注释挺详细了。-contour fitting source code (Matlab source), a foreigner series, level really can admire. Inside Notes quite detailed.
Update : 2025-02-17 Size : 139kb Publisher : 兴唐

采用水平集(level set)方法和mumford-shah图像分割模型的图像分割matlab源代码。-horizontal Collection (level set) methods and Mumford- shah Segmentation Model Image segmentation Matlab source code.
Update : 2025-02-17 Size : 55kb Publisher : 屈磊

水平集(level set)中快进算法(fast marching)算法的matlab工具箱,内容很全面。-Level Set (level set), Fast Forward algorithm (fast marching) algorithm m atlab Toolbox, which is very comprehensive.
Update : 2025-02-17 Size : 140kb Publisher : 屈磊

level set方法中的经典模型cv模型的matlab的源程序 -level set method of classical model cv model of the source Matlab
Update : 2025-02-17 Size : 6kb Publisher : adejacky

也是水平集方法的一个matlab源代码 基于边缘信息的-level is a collection of source code based on Matlab Edge Information
Update : 2025-02-17 Size : 18kb Publisher : adejacky

也是水平集方法的一个matlab源代码 比较经典的写的很详细 还可以做3d处理的-level is a collection of source code comparison Matlab classic written in great detail can be done to deal with the 3d
Update : 2025-02-17 Size : 138kb Publisher : adejacky

改进的水平集方法,采用C_V模型进化。为多相位-improve the level set method, C_V evolutionary model. For the multi-phase
Update : 2025-02-17 Size : 9kb Publisher : kevin

level set code ,good-level set code, good
Update : 2025-02-17 Size : 6kb Publisher : tony

基于水平集法的图象分割算法,用MATLAB语言编写-based on the level set method for image segmentation algorithm using MATLAB language
Update : 2025-02-17 Size : 62kb Publisher : lilan

GAC evolves the level set function according to geodesic active contour model-GAC evolves the level set function accordi Vi to geodesic active contour model
Update : 2025-02-17 Size : 15kb Publisher : 王大众

基于levelset的测地活动轮廓 matlab源码,可实现多目标轮廓的 提取。对噪声图象具有良好的鲁棒性。但是计算量较大,耗时过多-levelset based on the geodesic active contour Matlab source, more achievable goal contour extraction. Image noise is a good robust. However, the large amount of calculation, time-consuming excessive
Update : 2025-02-17 Size : 70kb Publisher :

A new level set model without initialization, very time efficient compared with former level set model.-A new level set model without initializati on, very time efficient compared with former level set model.
Update : 2025-02-17 Size : 760kb Publisher : Maybe

level set方法演化曲线的一个演示程序-level set method evolution curve of a demonstration program
Update : 2025-02-17 Size : 138kb Publisher : 赵璐

chan和vese的多水平集算法,可以用2条初始水平集来演化,从而达到检测多目标的目的。-chan and the multi-level set algorithm, you can use two sets to the initial level of evolution, so as to achieve the goal of multi-purpose.
Update : 2025-02-17 Size : 5kb Publisher : kang

DL : 0
水平集分割算法的C-V模型,matlab源代码-level set segmentation algorithm C-V model, the source code Matlab
Update : 2025-02-17 Size : 17kb Publisher : 陈健

图像分割中常用的水平集方法的matlab源代码!-Commonly used in image segmentation level set method matlab source code!
Update : 2025-02-17 Size : 138kb Publisher : 四季

一种新的水平集方法由Chunming Li教授开发的,还有配套的使用说明-A new level set method developed by Professor Chunming Li, as well as supporting the use
Update : 2025-02-17 Size : 772kb Publisher : 葛琦

This Matlab file demomstrates a level set method based on Chunming Li s CVPR07 paper: "Implicit Active Contours Driven By Local Binary Fitting Energy" in Proceedings of CVPR 07 Author: Chunming Li, all rights reserved,更多源码,请登录Chunming Li个人主页:http://vuiis.vanderbilt.edu/~licm/ http://www.engr.uconn.edu/~cmli/-This Matlab file demomstrates a level set method based on Chunming Li s CVPR07 paper:
Update : 2025-02-17 Size : 274kb Publisher : 王利
« 12 3 4 5 6 7 8 9 10 ... 50 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.