代码搜索:COMPRESS
找到约 7,043 项符合「COMPRESS」的源代码
代码结果 7,043
www.eeworm.com/read/101135/6238256
1 compress.1
.TH COMPRESS 1
.SH NAME
compress, uncompress, zcat \- compress a file using modified Lempel-Ziv coding
.SH SYNOPSIS
\fBcompress\fR [\fB\-cdfv\fR]\fR [\fIfile\fR] ...\fR
.br
.de FL
.TP
\\fB\\$1\\fR
\\$
www.eeworm.com/read/101135/6238509
1 compress.1
%!PS-Adobe-1.0
%%Creator: devps (Pipeline Associates, Inc.)
%%CreationDate: Fri Sep 13 13:03:28 1996
%%Pages: (atend)
%%DocumentFonts: (atend)
/devps 180 dict def devps begin
/res 10.000000 def
/y_of
www.eeworm.com/read/101135/6238693
1 compress.1
COMPRESS(1) Minix Programmer's Manual COMPRESS(1)
NAME
compress, uncompress, zcat - compress a file using modified Lempel-Ziv
coding
SYNOPSIS
www.eeworm.com/read/101082/6244969
1 compress.1
.TH compress 1 RISC
.SH Name
compress, uncompress, zcat \- compress and expand data
.SH Syntax
.NXR "compress command"
.B compress
[
.B \-f
] [
.B \-v
] [
.B \-c
] [
.B \-b
.I bits
] [
.I "name \&..."
www.eeworm.com/read/101082/6246847
1 compress.1
.TH compress 1 VAX
.SH Name
compress, uncompress, zcat \- compress and expand data
.SH Syntax
.B compress
[
.I options
] [
.I "name \&..."
]
.br
.B uncompress
[
.I options
] [
.I "name \&..."
]
.br
.B
www.eeworm.com/read/100601/6267010
c compress.c
/* compress.c -- compress a memory buffer
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* This file was modified since it
www.eeworm.com/read/100320/6270542
c compress.c
/*
Test statistical compression using fixed dictionary
*/
#include
#include
#include
#include
#include "comp.h"
#include "files.h"
#def
www.eeworm.com/read/306211/6296568
m compress.m
%用 J(k,l)=I(k,l)-(I(k,l-1)/2+I(k-1,l)/4+I(k-1,l-1)/8+I(k-1,l+1)/8)进行预测编码
I = imread('F:\标准图片\mri.pgm');
I2=I;
I=double(I);
fid = fopen('mydata.dat','w');
[m n] = size(I);
J=ones(m,n);
J(1:m,1)=
www.eeworm.com/read/414187/6306645
jpg compress.jpg
www.eeworm.com/read/494521/6377187
c compress.c
/* compress.c -- compress a memory buffer
* Copyright (C) 1995-2003 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* @(#) $Id: compress.c 126 2