convolve.h
来自「基于小波的图像配准」· C头文件 代码 · 共 16 行
H
16 行
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <malloc.h>
extern void dc_convolve(double* source,unsigned char* target,
long width,long height,
double* coefficient,int substar,int subend);
extern void dd_convolve(double* source,double* target,
long width,long height,
double* coefficient,int substar,int subend);
extern void cd_convolve(unsigned char* source,double* target,
long width,long height,
double* coefficient,int substar,int subend);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?