📄 wavelet.h
字号:
#include "convolve.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include <math.h>
extern void cc_wavelet_transform(unsigned char* dataArray,
unsigned char* LL,unsigned char* LH,
unsigned char* HL,unsigned char* HH,
long array_width,long array_height,
double* h_coefficient,
int h_substar,int h_subend);
extern void cd_wavelet_transform(unsigned char* dataArray,
double* LL,double* LH,
double* HL,double* HH,
long array_width,long array_height,
double* h_coefficient,
int h_substar,int h_subend);
extern void dd_wavelet_transform(double* dataArray,
double* LL,double* LH,
double* HL,double* HH,
long array_width,long array_height,
double* h_coefficient,
int h_substar,int h_subend);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -