basic.h_bak

来自「图像处理软件,功能比较基础」· H_BAK 代码 · 共 16 行

H_BAK
16
字号
#ifndef _BASICH_
#define _BASICH_

void **fspace_2d(short row,short col,short length);
void *fspace_1d(short col,short length);
void ffree_2d(void **a,short row);
unsigned char **InputImageWithName(short *Row,short *Col,char *FileName);
FILE *wfread1(short *row,short *col,short *type,char *s);
void OutputImageWithName(unsigned char **Image,short Row,short Col,char *FileName);
FILE *wfwrite1(short row,short col,short type,char *filen);
unsigned char **ReadBMPFile(short *Row,short *Col,char *FileName);
void OutputBMPWithName(unsigned char **image,short Row,
						short Col,char *FileName);
int ChangeFileName(char *filename);

#endif

⌨️ 快捷键说明

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