Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
exRLE.m
Package: work.rar [view]
Upload User: hwtw888
Upload Date: 2016-03-15
Package Size: 177k
Code Size: 0k
Category:
Compress-Decompress algrithms
Development Platform:
Matlab
- clear all;
- I = imread('cameraman.tif');
- I = im2bw(I, 0.4);
- [zipped, info] = RLEncode(I);
- unzipped = RLEdecode(zipped, info);
- %显示原始图像和经编解码后的图像,显示压缩比,并计算均方根误差得erms=0,
- %表示RLE是无失真编码。
- I2 = logical(unzipped);
- subplot(121);imshow(I);
- subplot(122);imshow(I2);
- erms = compare(I, I2)
- cr = info.ratio
- whos I unzipped zipped