Welcome![Sign In][Sign Up]
Location:
Search - COM matlab

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用MATLAB实现的ofdm的信道估计

Description:

本人方向是OFDM的MATLAB实现的信道估计,经典加精华收藏


Platform: | Size: 2911602 | Author: xiaofan308 | Hits:

[matlabis95的matlab仿真

Description: IS-95 Simulation (Edited Version - Easy to Learn IS-95) By Rustam Efendi, Microwave Laboratory, STTTelkom Bandung, Indonesia efendi_rustam@yahoo.com Original Version by Gennady Zilberman, Ben-Gurion University (Thx Sir) Link Rate = 9600 KBps, Packet length = 20 msec
Platform: | Size: 4684 | Author: zw2zab | Hits:

[OtherVC调用matlab文件中的函数的实例的源代码

Description:
Platform: | Size: 33792 | Author: 刘韬 | Hits:

[Waveletgaborconvolve

Description: 用matlab实现图像处理中很重要的gabor变换,如对程序有什么问题可以本人联系一起探讨,chengaoshu@sina.com-Matlab using image processing to achieve a very important gabor transform, such as the procedure is what can I contact to explore, chengaoshu@sina.com
Platform: | Size: 4096 | Author: 陈曙 | Hits:

[Windows Developcommatlab

Description: matlab具有强大的函数库,VC具有高效率的优点。通过com接口将VC和matlab进行连接,本程序实现了VC调用matlab中的magic函数。-Matlab has powerful functions, VC with high efficiency advantages. Com interface through VC and Matlab connect, the program of VC call Matlab function of magic.
Platform: | Size: 98304 | Author: lionheart | Hits:

[matlabmatlab7.x

Description: 《精通MATLAB7.0混合编程》系统地介绍MATLAB 7.0的混合编程方法和技巧。全书共分为13章。第1章和第2章介绍MATLAB的基础知识,第3章简要介绍MATLAB混合编程,第4章至第9章分别介绍几种典型的混合编程方法,包括C-MEX、MATLAB引擎、MAT数据文件共享、Mideva、Matrix和Add-in。第10章、第11章介绍MATLAB与Delphi和Excel的混合编程。第12章介绍MATLAB COM Builder,第13章以图像处理为例介绍了一个综合应用实例。 本书按混合编程的具体方法进行逻辑编排,自始至终用实例描述,每章着重阐述各种混合编程方法的实质和要点,同时穿插了作者多年使用MATLAB的经验和体会。本书既适合初学者自学,也适用于高级MATLAB用户,可作为高等数学、计算机、电子工程、数值分析、信息工程等课程的教学参考书,也可供上述领域的科研工作者参考。 这里是本书所有源码压缩包,内容详尽、实例丰富,包含MATLAB实例的源文件、函数/命令和注解以及程序实例。 -"proficient MATLAB7 mixed programming" system introduced in MATLAB 7.0 Mixed Programming methods and techniques. The book is divided into 13 chapters. Chapter 1 and Chapter 2 on the basis of knowledge MATLAB, Chapter 3 briefed Matlab. Chapter 4-Chapter 9, respectively introduced several typical mixed programming, including C-MEX, MATLAB engine, MAT data file sharing, Mideva, Matrix and the Add-in. Chapter 10, Chapter 11 and Delphi on MATLAB and Excel hybrid programming. Chapter 12 on MATLAB COM Builder, chapter 13 for image processing as an example of a composite application. The book by the mixed programming methods for the specific logic layout description throughout example, Each chapter focuses on a combination of programming and real elements, while full of the author's
Platform: | Size: 1619968 | Author: yixiao | Hits:

[matlabmatlab-image-processing

Description: 《MATLAB 6.5辅助图像处理》 本书是基于MATLAB 6.5的图像处理工具箱v3.2 (Image Processing Toolbox)编写的,较全面系统地介绍了图像处理工具箱v3.2函数在有噪和退化图像的恢复、图形绘制、图像几何变换、图像增强、二值分析、小波分析和分形几何用于图像处理,以及图形用户界面设计等方面的工程实际应用。全书侧重于图像处理工具箱在工程中的具体应用,通过具体的分析和详细的实例,读者不仅可以对MATLAB图像处理工具箱函数的强大功能有一个深刻了解,更能学会正确运用它快速解决实际问题的方法,从而提高分析问题和解决问题的能力。飞思在线http://www.fecit.com.cn“下载专区”提供书中范例源代码。 本书内容全面新颖、针对性强,理论与实际紧密结合,可供从事图像处理相关工作的教师、高年级本科生、研究生和广大科研人员参考。 -"MATLAB 6.5 support image processing," the book is based on MATLAB 6.5 of Image Processing Toolbox v3.2 (Image Processing Toolbox) Prepare, a more comprehensive system to introduce the Image Processing Toolbox v3.2 function in a noisy and the restoration of degraded images, graphics rendering, Image geometry transform, image enhancement, value analysis, wavelet analysis and fractal geometry for image processing, and the graphical user interface design, so the practical application of engineering. The book focused on Image Processing Toolbox works in the concrete application, through specific and detailed analysis of the examples, readers can not only on MATLAB Image Processing Toolbox function of the powerful have a deep understanding, better learn how to correctly apply it quick
Platform: | Size: 46080 | Author: xinxin | Hits:

[OtherbaseonComVC_Matlab

Description: 基于COM的VC与Matlab的混合编程技术-COM-based Visual C++ and Matlab mixed programming technology
Platform: | Size: 108544 | Author: 巍巍 | Hits:

[ActiveX/DCOM/ATLmyrandplotestvc

Description: 利用VC++和Matlab的COM BUILDER生成的COM组件,实现Matlab和VC++的联合编程,随机画图。-VC and Matlab COM BUILDER generated COM, Matlab and VC realization of joint programming, random drawing.
Platform: | Size: 55296 | Author: zhangkun | Hits:

[Special Effectsfloodfill(matlab)

Description: matlab环境下的flood fill算法实现,需要cvlib_mex支持,可在http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?下载。objectId=12200&objectType=File-Matlab environment under the flood fill algorithm. cvlib_mex need support in http :// www.mathworks.com/matlabcentral/fileex change/loadFile.do download. ObjectId = 12200
Platform: | Size: 20480 | Author: 康康 | Hits:

[Com PortMATLABandVisualC++COM

Description: MATLAB和Visual C++-COM混合编程-MATLAB and Visual C++-COM Hybrid Programming
Platform: | Size: 4096 | Author: 冯杰 | Hits:

[OtherVC_and_Matlab_Combine_Program

Description: VC++与Matlab混合编程的快速实现,这是篇很实用的资料,-VC++ With Matlab rapid realize mixed language programming, which is very useful information articles,
Platform: | Size: 104448 | Author: Yuanji | Hits:

[OtherMATLABcommand

Description: matlab命令大全,包括几乎所有的matlab命令,中文版,比使用help命令查询方便很多,是matlab用户的好帮手。-matlab command Guinness, including almost all of matlab command, the Chinese version, than the use of help command a lot of inquiries convenience is a good helper matlab users.
Platform: | Size: 188416 | Author: 姚尧 | Hits:

[matlabVB_MATLAB_COM

Description: 基于COM组件的VB与MATLAB混合编程实例,简单易懂,快速实现混编目的-COM-based components mixed VB and MATLAB programming examples, easy-to-read, fast mixed realize the purpose of
Platform: | Size: 5347328 | Author: 如水 | Hits:

[matlabMATLABVB

Description: 以一个BP神经网络进行函数逼近为例,通过COM组件实现MATLAB与VB应用程序的混编接口技术。-A BP neural network function approximation for example, through the COM components with VB realize MATLAB application interface technology mixed.
Platform: | Size: 610304 | Author: 如水 | Hits:

[matlabcom

Description: matlab环境下的多路串口数据实时绘图显示,GUI界面。-matlab environment in real-time multi-channel serial data graphics, GUI interface.
Platform: | Size: 83968 | Author: xiaxianfeng | Hits:

[matlabMatlab-COM

Description: MATLAB命令汇总~便于查询~十分有用-MATLAB command summary ~ ~ very useful to facilitate inquiries ~~~~~~~~~
Platform: | Size: 19456 | Author: sky | Hits:

[matlab[muchong.com]MATLAB优化算法案例分析与应用

Description: matlab小算法学习优化问题的同学可以参考参考(Matlab small algorithm learning optimization problems students can refer to reference)
Platform: | Size: 14636032 | Author: 加油土豆 | Hits:

[Algorithm[muchong.com]MATLAB在计算物理中的应用

Description: 用Matlab程序求解计算物理中使用到的方程,包括:薛定谔方程、傅立叶变换、波函数求解等等(Matlab file is used to describe and solve the equations in the computational physics, including, Schrodinger equation, Fourier transform, wave function solution, etc.)
Platform: | Size: 7894016 | Author: freshwater | Hits:
« 12 3 4 5 6 7 8 9 10 ... 28 »

CodeBus www.codebus.net