📄 resample.h
字号:
#ifndef RESAMPLE_H#define RESAMPLE_H/*Standard C header files */#include <stdio.h>#include <stdlib.h>#include <math.h>/* resampling program header files */#include "filter.h"#define CUBIC_TABLE_FILTER 0#define BILINEAR_NOTABLE_FILTER 1#define FILTER_NUM 2extern void c_resample(unsigned char *image_in, unsigned char *image_out,
long img_width, long img_height,
double trans_tx, double trans_ty,double angle);
extern void d_resample(double *image_in, double *image_out,
long img_width, long img_height,
double trans_tx, double trans_ty,double angle);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -