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
jpegdecode.asv
Package: JPEG-matlab.rar [view]
Upload User: mgf822
Upload Date: 2022-06-06
Package Size: 51k
Code Size: 1k
Category:
Compress-Decompress algrithms
Development Platform:
Matlab
- function x=jpegdecode(y)
- error(nargchk(1,1,nargin));
- m=[16 11 10 16 24 40 51 61
- 12 12 14 19 26 58 60 55
- 14 13 16 24 40 57 69 56
- 14 17 22 29 51 87 80 62
- 18 22 37 56 68 109 103 77
- 24 35 55 64 81 104 113 92
- 49 64 78 87 103 121 120 101
- 72 92 95 98 112 100 103 99];
- order=[1 9 2 3 10 17 25 18 11 4 5 12 19 26 33 ...
- 41 34 28 20 13 6 7 14 21 28 35 42 49 57 50 ...
- 43 36 29 22 15 8 16 23 30 37 44 51 58 59 52 ...
- 45 38 31 24 32 39 46 53 60 61 54 47 40 48 55 62 63 56 64];
- rev=order;
- for k=1:length(order)
- rev(k)=find(order==k);
- end
- m=double(y.quality)/100*m;
- xb=double(y.numblocks);
- sz=double(y.size);
- xn=sz(1);
- xm=sz(2);
- x=huffdecode(y.huffman,y.info);
- x=double(x)-128;
- eob=max(x(:));
- z=zeros(64,xb);
- k=1;
- for j=1:xb
- for i=1:64
- if x(k)==eob
- k=k+1; break;
- else z(i,j)=x(k);
- k=k+1;
- end
- end
- end
- z=z(rev,:);
- x=col2im(z,[8 8],[xm xn],'distinct');
- x=blkproc(x,[8 8],'x.*P1',m);
- t=dctmtx(8);
- x=blkproc(x,[8 8],'P1*x*P2',t',t);
- x=uint8(x+128);