Welcome![Sign In][Sign Up]
Location:
Search - mse

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

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


Platform: | Size: 232873 | Author: jasonchang | Hits:

[Other resource遗传算法TDOA解决

Description: 用遗传算法解决通信中的TDOA问题 文件名 program 完成功能 求出在进行account_test次的试验中每一次的最优染色体,并且求出均值MV,和均方误差MSE 文件名 definition_constant( ) 完成功能 对各个常量试验参数进行设定 文件名 main_program 完成功能 完成一次试验的计算 文件名 all_Noise 完成功能 计算TDOA值(由基站所测量的TDOA(受到噪声的干扰)) 文件名 gen_ini_pop_arr 完成功能 产生染色体矩阵pop_arr,矩阵的1,2行为估计的x,y坐标,矩阵的3,4行为0。-using genetic algorithms to solve the communication problems TDOA documents were obtained functional program completed during account_test meeting the test of the optimal every chromosome, and calculated average MV, and the mean square error MSE definition_constant file name () function to complete all regular Experimental parameters set main_program documents were completed functional testing of a complete calculation File Name all_Noise complete functional calculation TDOA value (measured from the base station TDOA (subject to noise interference )) File Name gen_ini_pop_arr have completed functional matrix pop_arr chromosome, the matrix acts estimated 1,2 x, y coordinates, and the matrix acts 3,4 0.
Platform: | Size: 2846 | Author: 田园 | Hits:

[CommunicationBlindTiming

Description: 超宽带(UWB)系统的盲同步仿真程序,精度在一个帧,最后可以得出盲同步的MSE。不足之处请多多指教。附MSE-SNR图一张。-ultra-wideband (UWB) systems for the blind simulation program synchronization, the accuracy in a frame, Finally come Blind synchronization MSE. Deficiencies Department asked for more information. A MSE - SNR Figure 1.
Platform: | Size: 14946 | Author: 孙强 | Hits:

[Embeded-SCM DevelopMSE

Description: 用DSP实现最小二乘法。可对测量得到的数据进行处理-DSP least squares method. The measurement can be processed data
Platform: | Size: 7030 | Author: 张翔 | Hits:

[Develop Toolsburg.

Description: burg法估计AR(P)模型参数的算法。里面ef是前项误差bf是后项误差,mse是预测误差的均方值。程序的最后输出的是把各阶预测误差放在一个下三角距阵中-burg estimates the AR (p) model parameter algorithm. Ef is inside the former bf error is the latter error, mse is forecast error of the mean square value. Procedures for the final output stage is the prediction error on a triangular matrix under which
Platform: | Size: 799 | Author: 李伟 | Hits:

[Other resourcemmse_diedai08

Description: 最佳权向量自适应迭代更新MSE对比波形,内有详细说明,供大家参考。-optimal weight vector adaptive waveform update MSE contrast, with detailed notes for reference.
Platform: | Size: 1651 | Author: doveray | Hits:

[Special Effectsdigitalimage1

Description: 图象的直方图处理及全尺度变换和各种性能指标的计算,如psnr,mse等-image histogram processing and full scale transformation and various performance indicators, such as psnr, mse etc.
Platform: | Size: 177647 | Author: 高颖 | Hits:

[Other resourceBCFO

Description: We address the problem of blind carrier frequency-offset (CFO) estimation in quadrature amplitude modulation, phase-shift keying, and pulse amplitude modulation communications systems.We study the performance of a standard CFO estimate, which consists of first raising the received signal to the Mth power, where M is an integer depending on the type and size of the symbol constellation, and then applying the nonlinear least squares (NLLS) estimation approach. At low signal-to noise ratio (SNR), the NLLS method fails to provide an accurate CFO estimate because of the presence of outliers. In this letter, we derive an approximate closed-form expression for the outlier probability. This enables us to predict the mean-square error (MSE) on CFO estimation for all SNR values. For a given SNR, the new results also give insight into the minimum number of samples required in the CFO estimation procedure, in order to ensure that the MSE on estimation is not significantly affected by the outliers.
Platform: | Size: 1265450 | Author: 吴大亨 | Hits:

[OtherMSE_calculation

Description: 最小二乘算法,最小均方误差等算法的MSE的计算,MATLAB代码
Platform: | Size: 2650 | Author: liulu_tina | Hits:

[Graph program1111111111

Description: 简单MSE识别分析,网络收集而来,感谢代码提供者吧
Platform: | Size: 1440 | Author: 苗军 | Hits:

[Other resourcevi2

Description: This program compress and recostruct using wavelets. We can select level of decomposition(here maximum 4 levels are given) of images using selected wavelet. For eg:-wavelets can be haar, db1, db2,dmey............... Decomposition can be viewed in figure. (Please note that select 256X256 image for better result.) Then compression can performed, PERFL2 give compression score. Then reconstruction can be performed. Each decompsition we can choose different threshold values. For each threshold value we can calculate mse,psnr,pq(picture quality), bit ratio etc. To get pq install pqs function .
Platform: | Size: 3674 | Author: 陈语恬 | Hits:

[Other resourceMSE

Description: Comparison of the performances of the LS and the MMSE channel estimators for a 64 sub carrier OFDM system based on the parameter of Mean square error
Platform: | Size: 3493 | Author: guoyanpeng | Hits:

[Other resourceOFDMsubspace

Description: 一个对OFDM信道进行盲估计的子空间算法,具有较好的MSE性能
Platform: | Size: 2636 | Author: Laura | Hits:

[Otherdigital

Description: It calculates dct and idct and then calculates psnr and mse
Platform: | Size: 2053120 | Author: udaya | Hits:

[matlabFiles

Description: 计算MSE和PSNR的小程序,生成mse-snr图表(MSE and PSNR calculation of small programs,Generate mse-snr diagrams)
Platform: | Size: 1024 | Author: suchao_2012 | Hits:

[OtherMSE_PSNR

Description: 采用MATLAB实现图像的PSNR(峰值信噪比)以及MSE(均方误差)的实现(Realization of PSNR (peak signal to noise ratio) and MSE (mean square error) realization of image with MATLAB)
Platform: | Size: 56320 | Author: wyywd0 | Hits:

[matlabNilai MSE, RMSE, dan PSNR

Description: contoh hitung mse rmse
Platform: | Size: 352256 | Author: okebiak | Hits:

[Other自适应波束形成

Description: matlab程序,基于最小均方误差准则和线性约束最小方差准则的自适应波束形成。(Adaptive beamforming based on MSE(Mean Square Error) and LCMV(Linear Constraint Minumum Variance),based on Matlab)
Platform: | Size: 1024 | Author: Akiraaa | Hits:

[Special EffectsPSNR

Description: 通过MATLAB对图像进行3*3模板的低通滤波,并求取MSE和PSNR(The low-pass filtering of 3*3 template is done through MATLAB, and MSE and PSNR are obtained.)
Platform: | Size: 68608 | Author: 北北北 | Hits:

[WEB Codetest

Description: mse实现h5的video标签播放mp4(MSE implements video tag playing MP4 in H5)
Platform: | Size: 1024 | Author: gxqm | Hits:
« 1 2 3 4 56 7 8 9 10 ... 35 »

CodeBus www.codebus.net