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

matlab实现的bmp和Jpg格式的互转程序,其中Bmp到Jpg有自己实现算法
Update : 2011-11-27 Size : 342.27kb Publisher : zoowii@163.com

该文件是关于图像处理的ppt文件,不需要任何语言基础,适合所有的编程爱好者。-ppt file about image processing.useful for programmer regard of programing language
Update : 2025-02-19 Size : 2.39mb Publisher : 周伟

一个自己做的MATLAB图象处理程序,已经上传了依次,没有成功,重新上传。重点是对BMP图象的各种操作以及MATLAB的GUI编程!-a MATLAB own image processing procedures, have uploaded followed, without success, to re-upload. Focus BMP images of the various operational and MATLAB GUI Programming!
Update : 2025-02-19 Size : 8kb Publisher : 李先生

本程序是一个通过菜单打开一个bmp图像文件的vc代码。-this process is through a menu to open a bmp image files of vc code.
Update : 2025-02-19 Size : 1.89mb Publisher : 孙晓

加密解密图象隐藏原程序(MATLAB) 注:用bmp图象加密JPEG图象-hidden image encryption and decryption of the original procedure (MATLAB) Note : bmp image encryption JPEG image
Update : 2025-02-19 Size : 1kb Publisher : 郭凯

由位图到JPEG的一个变换程序,基于MATLAB,并且给出详细的实验报告和文档-From bitmap to JPEG, a transformation process, based on MATLAB, and gives detailed reports and documents experiment
Update : 2025-02-19 Size : 106kb Publisher : 杨沛

”BP.m“文件是BP神经网络整个模型的源程序; “train.fig”是训练时最后得到的图片; “程序运行的人口数量原始数据.fig”是预测结果绘制的图; “程序运行时matlab命令窗口的内容.txt”是运行程序是在matlab命令窗口显示的东西; “程序运行完产生的数据.mat”是程序运行完毕产生的数据。 .bmp文件和.fig文件一样
Update : 2025-02-19 Size : 36kb Publisher : Dong Liang

实现了分水岭算法,并能够进行区域合并,能够处理各种类型的bmp,-Realize the watershed algorithm, and be able to carry out regional merger, able to deal with all kinds of bmp,
Update : 2025-02-19 Size : 1.16mb Publisher : wht_lvlearn0

raw图像格式与bmp图像格式的转换,matlab实现,具体参数详见m文件-raw image format and bmp image format conversion, implementate by matlab, the specific parameters detailed in m file
Update : 2025-02-19 Size : 3kb Publisher : wenwen

Harris Corner operator algorithm opens bmp
Update : 2025-02-19 Size : 56kb Publisher : trzi

DL : 0
Makes a simple avi movie from a sequence of frames The user can control the display time of each frame. The movie is created in the same folder where this function is run. Usage: Inputs: name: root name of the framse filetype: .bmp , .jpg , .jpeg , .tif ,,,, number_of_frames: number of the frames display_time_of_frame: it is the display time of each frame Output: it creates a file named as Movie.avi in the same folder of this function-Makes a simple avi movie from a sequence of frames The user can control the display time of each frame. The movie is created in the same folder where this function is run. Usage: Inputs: name: root name of the framse filetype: .bmp , .jpg , .jpeg , .tif ,,,, number_of_frames: number of the frames display_time_of_frame: it is the display time of each frame Output: it creates a file named as Movie.avi in the same folder of this function
Update : 2025-02-19 Size : 45kb Publisher : sunda

DL : 0
This makes Bmp sequence to AVI
Update : 2025-02-19 Size : 30.04mb Publisher : Leeseungwon

bmp DCT 压缩 对原图像进行DCT变换,数据压缩,丢弃右下角高频数据,进行DCT反变换,得到压缩后的图像-bmp DCT compression of the original image DCT transform, data compression, discarding the lower right corner frequency data, DCT inverse transform, the images are compressed
Update : 2025-02-19 Size : 153kb Publisher : zjj

DL : 0
matlab 7.x程序设计一书的源程序。第一篇绘图与句柄式图形,第二篇 图形化使用者界面,第三篇 深入活用MATLAB Compiler-matlab 7.x programming book source. First drawing and handle graphics, graphical user interface, second, third depth utilize MATLAB Compiler
Update : 2025-02-19 Size : 10.82mb Publisher : 王大为

bmp等图像格式通过JPEG标准编码程序-JPEG ENCODER
Update : 2025-02-19 Size : 4kb Publisher : Max Shen

SIFT, MATLAB CODE FEATURE MATCHING AND FEATURE RECOGNITION
Update : 2025-02-19 Size : 490kb Publisher : Esviliance

二进制流读入bmp图像,空间和灰度分辨率的改变-Bmp image read the binary stream, spatial and grayscale resolution change
Update : 2025-02-19 Size : 7kb Publisher : xiehanyu

可以实现BMP图像的读取和显示,不适用Matlab中的imread()函数(serve to read BMP picture)
Update : 2025-02-19 Size : 492kb Publisher : 菜垚

.熟悉BMP图像的结构,编程实现BMP图像的阅读和显示。 编程实现彩色BMP图像的三个分量R、G、B的显示,Y、I、Q,H、S、I分量和X、Y、Z的显示。 获取图像任意一点的像素值(Familiar with the structure of BMP image, programming to realize the reading and display of BMP image. The programming realizes the display of three components, R, G, B, of color BMP images, Y, I, Q, H, S, I components and X, Y, and displays. Get the pixel value of any point of the image)
Update : 2025-02-19 Size : 194kb Publisher : phoebephoebe
« 12 3 4 5 6 7 8 9 10 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.