代码搜索:RLE
找到约 1,175 项符合「RLE」的源代码
代码结果 1,175
www.eeworm.com/read/430722/8731223
dsp rle.dsp
# Microsoft Developer Studio Project File - Name="RLE" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/430722/8731225
dsw rle.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/180086/9319972
h rle.h
#if !defined(RLE_H)
#define RLE_H
#include
#include
#include
#ifdef __cplusplus
extern "C"
{
#endif
//Run Length 编码/解码函数集
DWORD RunLength(BYTE *pInput,D
www.eeworm.com/read/180086/9319977
c rle.c
// Run Length 编码解码函数集
#include
#include
#include
#include "RLE.h"
#include "Server.h"
DWORD dwCodeLength = 19;
DWORD RunLength(BYTE *pInput,DWORD dwCount)
www.eeworm.com/read/180086/9320023
h rle.h
#if !defined(RLE_H)
#define RLE_H
#include
#include
#include
#ifdef __cplusplus
extern "C"
{
#endif
//run length 编码解码函数集
DWORD RunLength(BYTE *pInput,DWOR
www.eeworm.com/read/180086/9320026
c rle.c
// Module Name: RLE.c
//
// Description:
// A implementation of Run Length Encoding and Decoding Routines
//
#include
#include
#include
#include "RLE.h"
#i
www.eeworm.com/read/374738/9386934
c rle.c
/***********************************************************************************************************
RLE.c
本演示程序提供了游程长度编码法的压缩和解压缩函数,并实现了对图象
文件的压缩和解压缩
***********************************
www.eeworm.com/read/374738/9386935
dsp rle.dsp
# Microsoft Developer Studio Project File - Name="RLE" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/374738/9386936
dsw rle.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/176990/9477901
m rle.m
function [val,len] = rle(x)
% RLE Run Length Encoding
% [VAL,LEN] = RLE(X) encodes the data in vector X into run values, VAL, and
% run lengths, LEN.
%
% Example:
% >> X = [1 1 1 1