waveproc.h

来自「wavlet compression on c++ only cods」· C头文件 代码 · 共 22 行

H
22
字号
// Copyright (c) 1999 Stephen T. Welstead. All rights reserved.
// File waveproc.h  Header for wavelet procedures

#ifndef WAVEPROC_H
#define WAVEPROC_H

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
    int row,col;
    } tindex;

int decimate_array (float **array,int rows,int cols,
        unsigned long n);

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?