Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - reconstruction matlab
Search - reconstruction matlab - 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

sirt, art, matlab
Update : 2011-11-18 Size : 524.75kb Publisher : 1102776105@qq.com

用来实现三维阻抗及光学断层成像重建的matlab程序-used 3D impedance and optical tomography reconstruction procedures Matlab
Update : 2025-02-19 Size : 59.28mb Publisher : 奉华成

用matlab实现小波分解与重构的几个程序的源代码。-using Matlab achieve wavelet decomposition and reconstruction of several programs at the source code.
Update : 2025-02-19 Size : 2kb Publisher : yy

超分辨率图像重建。具有非常好的效果,程序效率较高,有完整的注释和说明文档。-super-resolution image reconstruction. Very good results, the higher the efficiency, integrity of the Notes and documentation.
Update : 2025-02-19 Size : 66kb Publisher : 王国回

DL : 0
matlab ART重建算法,该算法可用于CT图像重建或EST图像重建-Matlab ART reconstruction algorithm, which can be used for CT image reconstruction or image reconstruction EST
Update : 2025-02-19 Size : 1kb Publisher : weige

基于三维空间三角网格的二维投影图像变换,包括3D仿射变换,基础矩阵求解及欧式空间的重构,对基于图像的三维重构有研究的朋友可以看下-triangular grid transform two-dimensional projection images, including 3D affine transformation, based Matrix Solution and European space reconstruction, based on the three-dimensional image reconstruction studies have friends in a glance
Update : 2025-02-19 Size : 197kb Publisher : 郭震宇

DL : 0
3D--ART重建-3D-- ART reconstruction
Update : 2025-02-19 Size : 3kb Publisher : 9311066

小波变换 采用mallat算法对信号进行四级分解、重构.matlab做的。-wavelet transform algorithm used Mallat four of the signal decomposition and reconstruction. Matlab done.
Update : 2025-02-19 Size : 1kb Publisher : 岳莹昭

连续信号的采样与重构,主要说明信号采样与重构程序-continuous signal sampling and Reconstruction, the main note signal sampling procedures and Reconstruction
Update : 2025-02-19 Size : 2kb Publisher : 徐恒梅

三维重建,使用matlab编写的,效果可以-3D reconstruction, prepared by the use of Matlab, the effect can
Update : 2025-02-19 Size : 1.14mb Publisher : 郭继东

DL : 1
Matlab重建磨牙CT图像的三维模型的初步研究-Matlab molar CT image reconstruction of three-dimensional model of the preliminary study
Update : 2025-02-19 Size : 581kb Publisher : fife

利用MATLAB进行血管的三维图像重建,充分利用了matlab对大量图片的处理能力-The use of MATLAB to carry out three-dimensional image reconstruction of blood vessels, matlab full advantage of the large number of image processing capability
Update : 2025-02-19 Size : 101kb Publisher : fife

DL : 0
3D shape reconstruction matlab code. It used shape from defocus technique with least squares. You can reconstruct 3D shape with only two different depth images.
Update : 2025-02-19 Size : 95kb Publisher : ask

DL : 0
3D shape reconstruction matlab code. It used shape from defocus technique with divergence. You can reconstruct 3D shape with only two different depth images.
Update : 2025-02-19 Size : 448kb Publisher : ask

DL : 0
3D shape reconstruction matlab code. It used shape from defocus technique with diffusion. You can reconstruct 3D shape with only two different depth images.
Update : 2025-02-19 Size : 452kb Publisher : ask

DL : 0
应用MATLAB实现连续信号的采样与重构仿真-Application of MATLAB to achieve continuous signal sampling and reconstruction of simulation
Update : 2025-02-19 Size : 72kb Publisher : 王鹏

基于图像序列的三维重建.可以从2D照片生成3D模型-this is a pdf about 3d reconstruction
Update : 2025-02-19 Size : 484kb Publisher : 陈晓晓

图像三维重建 matlab环境 可用于各种图像-Image three-dimensional reconstruction of the environment can be used for a variety of images matlab
Update : 2025-02-19 Size : 646kb Publisher : uneamie

使用matlab在三维空间中对CT图像进行三维重建-3d reconstruction usingmatlab
Update : 2025-02-19 Size : 7.27mb 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.