view Meerwald/gray.h @ 8:f83ef905a63d

fixing many warnings increase capacity for coordinates in bruyn fix some uninit. variables
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Tue, 22 Apr 2008 13:36:05 +0200
parents be303a3f5ea8
children
line wrap: on
line source

#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

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.