Welcome![Sign In][Sign Up]
Location:
Search - rle run

Search list

[Graph program8位的RLE编码算法

Description: Run Length Encoding compressor program 8 bit header version
Platform: | Size: 15644 | Author: 江丰 | Hits:

[Graph program8位的RLE编码算法

Description: Run Length Encoding compressor program 8 bit header version
Platform: | Size: 15360 | Author: 江丰 | Hits:

[Graph programrle1

Description: 本程序提供游程长度压缩和解压缩函数,并对图象文件压缩和解压缩-procedures for the run-length compression and decompression functions, as well as image compression and decompression
Platform: | Size: 13312 | Author: 徐亮 | Hits:

[Compress-Decompress algrithmsRLE

Description: RLE游程长度编码,基于VC6.0平台,应用于图形图像编码,为常用编码法。-RLE Run-length encoding, based on VC6.0 platform graphics image coding used for the commonly used coding method.
Platform: | Size: 623616 | Author: shen | Hits:

[Compress-Decompress algrithmsbianma

Description: 实现哈夫曼编码,香农-费诺编码,RLE行程编码-The realization of Huffman coding, Shannon- Fenno encoding, RLE Run-Length Coding
Platform: | Size: 3072 | Author: 牟尼 | Hits:

[Special EffectsRLE

Description: 本演示程序提供了游程长度编码法的压缩和解压缩函数,并实现了对图象文件的压缩和解压缩-This demo provides a run-length coding method of compression and decompression functions, and to realize the image file compression and decompression
Platform: | Size: 176128 | Author: Garwolf | Hits:

[Special EffectsRLE

Description: RLE.c 本演示程序提供了游程长度编码法的压缩和解压缩函数,并实现了对图象 文件的压缩和解压缩-RLE.c the demo provides a run-length coding method of compression and decompression functions, and to realize the image file compression and decompression
Platform: | Size: 2048 | Author: zhangpin | Hits:

[Compress-Decompress algrithmsRLE

Description: 可运行,运用游程长度编码法进行压缩和解压缩图象文件。-Can be run using run-length coding method for document image compression and decompression.
Platform: | Size: 14336 | Author: 魏梨君 | Hits:

[Compress-Decompress algrithmsRLE

Description: This the code about run length encoding-This is the code about run length encoding
Platform: | Size: 93184 | Author: john smith | Hits:

[matlabrle

Description: Run length Encoding code in matlab
Platform: | Size: 1024 | Author: hussain | Hits:

[Multimedia DevelopRLE-Bmp

Description: 行程编码RLE,可进行256位图像的压缩-Run-Length Coding RLE, can be 256-bit image compression
Platform: | Size: 24576 | Author: 王艳群 | Hits:

[Compress-Decompress algrithmsRLE

Description: 二值图像 游程编码 自己测试过。。。绝对可用-Binary image run-length coding themselves tested. . . Definitely can be used
Platform: | Size: 1024 | Author: 龙军 | Hits:

[Communication-MobileRLE

Description: RLE=Run Lenght Coding for image.
Platform: | Size: 673792 | Author: Lusa Elena | Hits:

[Windows Developrle-0.2

Description: This archive contains simple and readable ANSI C implementations of run length encoding and decoding (RLE).
Platform: | Size: 26624 | Author: Han | Hits:

[Wavelet41695066wienerfilter2

Description: 内容:第4章 图像增强(对比度增强、灰度变换法、直方图修整法、图像平滑、图像锐化、伪彩色和假彩色增强);第5章 图像复原(逆滤波复原、维纳滤波方法);第6章 图像处理中的正交变换(傅立叶变换、离散余弦变换(DCT)、沃尔什变换、基于特征向量的变换、霍特林(Hotelling)变换、SVD变换、小波变换、Mallat算法);第7章 图像压缩编码(霍夫曼(Huffman)编码、算术编码、游程编码(Run Length Coding)、位平面编码、预测编码、DPCM、-Content: Chapter 4 image enhancement (contrast enhancement, gray-scale transformation method, histogram trimming method, image smoothing, image sharpening, pseudo-color and false color enhancement) Chapter 5 Image Restoration (inverse filter restoration, Wiener filter method ) Chapter 6 Image Processing orthogonal transformation (Fourier transform, discrete cosine transform (DCT), Walsh transform, eigenvector-based transformation, Hotelling (Hotelling) transform, SVD transform, wavelet transform, Mallat algorithm) Chapter 7 Image Coding (Hoffman (Huffman) coding, arithmetic coding, RLE (Run Length Coding), bit-plane coding, predictive coding, DPCM,
Platform: | Size: 1024 | Author: eric | Hits:

[Compress-Decompress algrithmsCompressionLZ77-LZ78-HUF-ARI-LZW-RLE

Description: 非常全面的无损压缩算法集合,编译通过,可以运行!-Very comprehensive collection of lossless compression algorithm, compiles, you can run!
Platform: | Size: 1624064 | Author: wupeng | Hits:

[source in ebookrle

Description: Run length encoding using matlab language.
Platform: | Size: 1024 | Author: hue | Hits:

[Compress-Decompress algrithmsbcl-1.2.0

Description: RLE又叫Run Length Encoding,是一个针对无损压缩的非常简单的算法。它用重复字节和重复的次数来简单描述来代替重复的字节。尽管简单并且对于通常的压缩非常低效,但它有的时候却非常有用(例如,JPEG就使用它)。 RLE可以使用很多不同的方法。基本压缩库中详细实现的方式是非常有效的一个。一个特殊的标记字节用来指示重复节的开始,而不是对于重复非重复节都coding run。因此非重复节可以有任意长度而不被控制字节打断,除非指定的标记字节出现在非重复节(顶多以两个字节来编码)的稀有情况下。为了最优化效率,标记字节应该是输入流中最少出现的符号(或许就不存在)。重复runs能够在32768字节的时候运转。少于129字节的要求3个字节编码(标记+次数+符号),而大于128字节要求四个字节(标记+次数的高4位|0×80+次数的低4位)。这是通常所有采用的压缩的做法,并且也是相比较三个字节固定编码(允许使用3个字节来编码256个字节)而言非常少见的有损压缩率的方法。 在这种模式下,最坏的压缩结果是: 输出大小=257/256*输入大小+1-RLE (Run Length Encoding) is the simplest possible lossless compression method. Nevertheless it serves a purpose, even in state of the art compression (it is used in JPEG compression, for instance). The basic principle is to identify sequences of equal bytes, and replace them with the byte in question and a repetition count (coded in some clever * fashion).
Platform: | Size: 105472 | Author: choi | Hits:

[.netRLE

Description: Run length encoding program
Platform: | Size: 1024 | Author: Siva | Hits:

[Compress-Decompress algrithmsRun-length encoding?(RLE)

Description: run length encoding的Matlab程序,纯原创,请勿抄袭!(This is a Matlab program for run length encoding.)
Platform: | Size: 50176 | Author: 海涵 | Hits:
« 12 3 4 »

CodeBus www.codebus.net