Mercurial > hg > wm
comparison Meerwald/gray.h @ 0:be303a3f5ea8
import
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Sun, 12 Aug 2007 13:14:34 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:be303a3f5ea8 |
---|---|
1 #ifndef GRAY_H | |
2 #define GRAY_H | |
3 | |
4 #include "wm.h" | |
5 #include "pgm.h" | |
6 | |
7 gray **alloc_grays(int cols, int rows); | |
8 gray **alloc_grays_8x8(); | |
9 void free_grays(gray **grays); | |
10 void copy_grays_to_block(gray ** block_grays, gray ** image_grays, int col, int row, int width, int height); | |
11 void copy_grays_from_block(gray ** image_grays, gray ** block_grays, int col, int row, int width, int height); | |
12 void print_grays(gray **grays, int col, int row, int width, int height); | |
13 void print_grays_8x8(gray **grays); | |
14 #endif |