annotate Meerwald/coeff.h @ 5:8191b855cd5e
Added tag v0.5 for changeset 9cf6ec970448
author |
Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
date |
Tue, 14 Aug 2007 21:13:29 +0200 |
parents |
be303a3f5ea8 |
children |
|
rev |
line source |
0
|
1 #ifndef COEFF_H
|
|
2 #define COEFF_H
|
|
3
|
|
4 #include "wm.h"
|
|
5
|
|
6 double **alloc_coeffs(int cols, int rows);
|
|
7 double **alloc_coeffs_8x8();
|
|
8 void free_coeffs(double **coeffs);
|
|
9 void print_coeffs_8x8(double **coeffs);
|
|
10 void print_coeffs(double **coeffs, int c, int r, int w, int h);
|
|
11
|
|
12 #endif
|