?? gray.h
字號:
/*############################################################################# * 文件名:gray.h * 功能: 灰度圖像操作 * modified by PRTsinghua@hotmail.com#############################################################################*/#ifndef GRAY_H#define GRAY_H#include "wm.h"#include "pgm.h"gray **alloc_grays(int cols, int rows);gray **alloc_grays_8x8();void free_grays(gray **grays);void copy_grays_to_block(gray ** block_grays, gray ** image_grays, int col, int row, int width, int height);void copy_grays_from_block(gray ** image_grays, gray ** block_grays, int col, int row, int width, int height);void print_grays(gray **grays, int col, int row, int width, int height);void print_grays_8x8(gray **grays);#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -