-
recommended a rapid compression algorithm, I tried to use good, detailed descrip...
推荐一个快速压缩算法,我试着用的不错,详细说明见:http://www.codeguru.com/Cpp/Cpp/algorithms/compression/article.php/c7043/
- 2022-05-18 13:15:38下载
- 积分:1
-
在Delphi环境下可运行
在Delphi环境下可运行-environment in Delphi running
- 2022-04-16 22:40:01下载
- 积分:1
-
声音的线性预测编码和解码,利用vc的函数直接从mic采集数据或者操作wav文件进行压缩和解压,别情提供回访比较功能。...
声音的线性预测编码和解码,利用vc的函数直接从mic采集数据或者操作wav文件进行压缩和解压,别情提供回访比较功能。-sound linear forecasting coding and decoding,make use of vc library directly to collect data or operate wav file to compress or decompress ,provide compression function.
- 2022-07-03 00:13:23下载
- 积分:1
-
自适应哈夫曼编码
Adaptive Huffman coding
- 2022-08-25 20:48:08下载
- 积分:1
-
gif图像的编解码实现,在vc环境下直接编译即可!
gif图像的编解码实现,在vc环境下直接编译即可!-realization of gif graphic compression/decompression,which can be compiled in VC environment.
- 2022-02-09 23:49:40下载
- 积分:1
-
介绍嵌入式的视频,来自上海交通大学,是一个ARM培训的视频教程...
介绍嵌入式的视频,来自上海交通大学,是一个ARM培训的视频教程-introduced Embedded Video from Shanghai Jiaotong University, is a video training ARM Guide
- 2022-05-10 21:26:05下载
- 积分:1
-
.NET EXE压缩
在Windows下,可以使用upx这样的工具来压缩可执行文件的大小,不过这种工具不支持.NET程序。.NETZ是一个开源的支持.NET...
.NET EXE压缩
在Windows下,可以使用upx这样的工具来压缩可执行文件的大小,不过这种工具不支持.NET程序。.NETZ是一个开源的支持.NET程序压缩的工具,它也可以将一个EXE和多个DLL合并在一起执行。
如果要压缩一个EXE程序,只需要执行:
netz app.exe
如果要指定图标,可以执行:
netz app.exe -i app.ico
如果程序是控制台程序,需要执行:
netz -c app.exe
也可以把程序和DLL合并为一个应用程序:
netz -s app.exe lib1.dll lib2.dll
.NETZ的工作原理,实际上是先利用#ZipLib 对执行文件进行压缩。执行时在内存中先释放,再利用reflection来实现加载和调用。可以参考DDJ上的相关文章http://www.ddj.com/documents/s=9570/ddj0503m/0503m.html-err
- 2022-01-25 21:00:30下载
- 积分:1
-
这是BAC(二值算数编码)
这是我自己提供的
主要是可是可适应性的编码功能...
这是BAC(二值算数编码)
这是我自己提供的
主要是可是可适应性的编码功能
-This is the BAC (Binary Arithmetic Coding) This is my own but is mainly provided by the encoding function can be adaptive
- 2022-03-06 05:45:31下载
- 积分:1
-
由bmp生成mpeg2 的I_frame 数据
由bmp生成mpeg2 的I_frame 数据-generated by the I_frame data mpeg2
- 2023-08-01 19:10:04下载
- 积分:1
-
每一步的LZSS算法发送一个字符或<;位置,冷…
In each step the LZSS algorithm sends either a character or a pair. Among these, perhaps character "e" appears more frequently than "x", and a pair of length 3 might be commoner than one of length 18, say. Thus, if we encode the more frequent in fewer bits and the less frequent in more bits, the total length of the encoded text will be diminished. This consideration suggests that we use Huffman or arithmetic coding, preferably of adaptive kind, along with LZSS.-In each step the LZSS algorithm sends either a character or a lt;position, lengthgt; pair. Among these, perhaps character "e" appears more frequently than "x", and a lt;position, lengthgt; pair of length 3 might be commoner than one of length 18, say. Thus, if we encode the more frequent in fewer bits and the less frequent in more bits, the total length of the encoded text will be diminished. This consideration suggests that we use Huffman or arithmetic coding, preferably of adap
- 2022-07-08 14:12:34下载
- 积分:1