pnmio.h

来自「this is code for finding and tracking fe」· C头文件 代码 · 共 57 行

H
57
字号
/********************************************************************* * pnmio.h *********************************************************************/#ifndef _PNMIO_H_#define _PNMIO_H_#include <stdio.h>/********** * With pgmReadFile and pgmRead, setting img to NULL causes memory * to be allocated *//********** * used for reading from/writing to files */unsigned char* pgmReadFile(  char *fname,  unsigned char *img,  int *ncols,   int *nrows);void pgmWriteFile(  char *fname,  unsigned char *img,  int ncols,  int nrows);void ppmWriteFileRGB(  char *fname,  unsigned char *redimg,  unsigned char *greenimg,  unsigned char *blueimg,  int ncols,  int nrows);/********** * used for communicating with stdin and stdout */unsigned char* pgmRead(  FILE *fp,  unsigned char *img,  int *ncols, int *nrows);void pgmWrite(  FILE *fp,  unsigned char *img,  int ncols,  int nrows);void ppmWrite(  FILE *fp,  unsigned char *redimg,  unsigned char *greenimg,  unsigned char *blueimg,  int ncols,  int nrows);#endif

⌨️ 快捷键说明

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