搜索资源列表
SaveJPEG
- 提示: JPEG压缩分为三个部分: 1.JPEG压缩原理及算法(RGB/YCbCr,DCT/IDCT,量化,Z字型编码,用DPCM对DC/用RLE对AC编码/Huffman编码) 2.JPEG标记格式 3.JPEG图片文件的组织形式(位于SOS后的图像压缩数据是由MCU块怎样排列的,特别是使用了DRI之后) 还有许多细节问题: 1.解码过程中遇到“FF 00”当“FF”处理,否则忽略“FF” 2.进行DCT前YCbCr要减128,进行IDCT前要加128(相当于Y减128,YCbCr不需要加12
DCT2D
- IDCT JPEG中用到的 大家可以参考 呵呵 很好用-IDCT JPEG we can use the reference Oh good use
j2b
- JPEG图像解码并转换成BMP图像:大概包括IDCT、反量化、反编码等过程,程序可以正确编译!-JPEG image decoding and converted into BMP images : probably includes IDCT, anti-quantified, Anti-coding processes, procedures can correct translation!
a_jpeg_compression_matlab
- It shows what a jpeg compression is all about. the function implements the DCT transform, using a matrix operator. note that matlab has a function for the DCT and iDCT transforms that might be more efficient. -It shows what a jpeg compres
fpgaJPEGdcode
- 基于fpga的JPEG编解码器设计,采用流水线优化解决时间并行性问题,提高DCT/IDCT模块的运行速度。-based fpga JPEG codec design, the flow of time to solve optimization problems in parallel, enhance DCT / IDCT module of the operating speed.
jpeg
- the attached utility is a work I ve submitted to the university It shows what a jpeg compression is all about. the function implements the DCT transform, using a matrix operator. note that matlab has a function for the DCT and iDCT transform
jpeg_bmp
- 从JPEG转bmp格式,huffman采用存储译码,IDCT变换采用行列分别译码,采用loeffler译码,算法和数据结构都很优秀
jpeg
- 论文主要介绍了JPEG的编码和解码过程。该程序的编码部分能把一张BMP格式的图象进行JEPG编码,压缩成以二进制形式保存的文件;通过相应的解码程序又可以把图象解压缩出来。在图象传送过程中,我们经常采用JPEG格式对静态图象进行编码。JPEG基本系统是一种有损编码,无法完全恢复出原图象,信息有一定的丢失,称为有损压缩。尽管我们希望能够无损压缩,但是通常有损压缩的压缩比(即原图象占的字节数与压缩后图象占的字节数之比,压缩比越大,说明压缩效率越高)比无损压缩的高。JPEG编码先把图象色彩RBG变成亮度
Jpeg-Compression
- 附件里的文件是我已经提交给学校的一个工作。它演示了一个JPEG图像压缩算法的全部。使用一个矩阵操作实现DCT变换(提示MATLAB有一个自己的DCT和iDCT函数,可能它的会更高效),附件里的ReadMe.txt包含了详细的算法Restoration
JPEG图片编解码程序
- JPEG图片编解码程序,包括读头文件和DCT,IDCT变换等等。,JPEG image codec procedures, including the first reading of documents and DCT, IDCT transform and so on.
dct
- 8*8DCT,基于流水线设计,比较经典,可以用于JPEG,也可以用于H.264(需改为4*4)-8* 8DCT, based on the pipeline design, compare a classic, can be used in JPEG, can also be used for H.264 (to be replaced 4* 4)
jpeg_decode
- 本解码器类支持普通jpeg文件格式,这也是目前大多数jpeg文件所采用的格式,此格式主要特点是数据精度为8位,采用Huffman编码的普通DCT帧(不支持扩展串行和递进模式及数学编码)。本解码器类的IDCT算法采用三种模式,分别是浮点解码、定点整数解码和定点整数MMX优化解码,您可根据具体情况选择。-jpeg decoder using Huffman encoder、IDCT based on foating decoder、Fixed-point integer decoder and Fi
JPEG
- JPEG编码硬件加速器,采用DCT算法,其中含有skew circular convolution单元,其构架设计能以精简的电路,同时满足DCT与IDCT的需求。-Accelerator hardware JPEG encoder, the DCT algorithm, which contains skew circular convolution module, the framework in order to streamline the design of the circuit, a
jpeg
- JPEG 静态图像压缩 各文件功能说明如下: 1) JPEG压缩程序:gendat.exe 2) 为压缩后的数据加上JPEG文件头的程序genjpg.exe 3) 解JEPG压缩程序extrdat.exe 其中:(1)的输入参量是需要生成的压缩文件的名字。 主程序流程为: a) 程序初始化,读取文件名称、原始图像数据等基本数据; b) 从AC.TAB和DC.TAB两个文件生成AC表和DC表,存入数组 c) 以8×8为样本单位进行DCT变换 d) 以8×8为
jpeg
- jpeg compression , use DCT, Zigzag, Quantization,IDCT, InvZigzag, huffman to do the compression with matlab
DCT_IDCT
- verilog code for DCT and IDCT (JPEG)
Myproject
- It is a laboratory work from bsuir, where foto can be normilized by brightness, contrast, algorithm JPEG, dct idct
jpeg
- 自己写的jpeg的压缩,自己写的DCT以及IDCT,没有采用huffman编码,因为太难了,采用的是游程编码,可以直接运行,压缩比达到要求。内付文档详细说明代码。-Write your own jpeg compression, and write their own DCT and IDCT, did not use huffman coding, because too difficult, using run-length encoding, you can directly run th
jpeg
- It shows what a jpeg compression is all about. the function implements the DCT transform, using a matrix operator. note that matlab has a function for the DCT and iDCT transforms that might be more efficient.
Jpeg
- 视音频课程作业,对视频抽帧,对单张图片进行yuv420采样、DCT变化、量化以及反量化、IDCT变化(Jpeg Encoding & Decoding)