wavelet.h

来自「基于小波的图像配准」· C头文件 代码 · 共 27 行

H
27
字号
#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 + =
减小字号Ctrl + -
显示快捷键?