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

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

一个自己做的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的图像压缩代码,适合初学者,算法比较简单-Matlab image compression code for beginners, the algorithm is relatively simple
Update : 2025-02-19 Size : 1kb 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 : 郭凯

用与将avi格式的视频流转换成bmp的图片-use and will avi video format replaced by the circulation of photographs bmp
Update : 2025-02-19 Size : 3.67mb Publisher : 老马

读入yuv格式视频,并装换为bmp文件保存-Read in yuv format video, and install exchange for the bmp file
Update : 2025-02-19 Size : 1kb Publisher : 许芳

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

数字图像处理中非常有用的一些图片包括LENA等.-Digital image processing is very useful in a number of pictures, including LENA, BARBARA such.
Update : 2025-02-19 Size : 1.97mb Publisher : hide

DL : 0
图片(bmp,jpg等)与DAT格式文件相互转换,实现DSP读取,存取图像,另附《Matlab辅助DSP进行图像处理应用开发》-Photo (bmp, jpg, etc.) and DAT format files converted with each other to achieve DSP read, access images, attached " Matlab-assisted DSP for image processing application development"
Update : 2025-02-19 Size : 217kb Publisher : xzhy

运用MATLAB语言,构造了.bmp文件,其中包含了黑白,256色以及真彩图片,加强了对于 .bmp文件的理解,及MATLAB语言对于文件的读写-The use of MATLAB language, is constructed. Bmp file, which contains black and white, 256-color and true color images, enhanced for. Bmp files to understand, and the MATLAB language for the document to read and write
Update : 2025-02-19 Size : 3kb Publisher : 陈濛

Canny算子提取边缘,matlab进行图像处理,图像锐化-Canny edge extraction operator, matlab image processing, image enhancement
Update : 2025-02-19 Size : 276kb Publisher : 图像处理

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

matlab 小波零树图像压缩程序,分析对象:lena.bmp -matlab wavelet zero-tree image compression process, analyze the object: lena.bmp
Update : 2025-02-19 Size : 23kb Publisher : anrold88

编写基本的图像处理程序,包括功能: 图像的读取、存储、显示(bmp、jpg等常用格式) 图像剪切、缩放 图像色彩变换(彩色->灰度等) 基本直方图变换和直方图均衡化 图像平滑与锐化 边缘抽取 阈值化 离散傅立叶变换 二值形态学处理(腐蚀、膨胀、开运算、闭运算) -Preparation of basic image processing procedures, including functions: image reading, storage and display (bmp, jpg and other popular format), image cropping, scaling the image color change (color-> gray, etc.) basic histogram transform and histogram equalization image smoothing and sharpening the edge of the threshold of taking the discrete Fourier transform processing binary morphology (erosion, dilation, opening operation and closing operation)
Update : 2025-02-19 Size : 8kb Publisher : Nero

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
« 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.