view Meerwald/dwt.h @ 11:a5249f7d45f7

improve cmp_ppm usage help
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Thu, 01 May 2008 18:19:13 +0200
parents acb6967ee76d
children
line wrap: on
line source

#ifndef DWT_H
#define DWT_H

#include "wm.h"
#include "pgm.h"
#include "wavelet.h"

#define FILTERG 1
#define FILTERH 2
#define FILTERGi 3
#define FILTERHi 4

void init_dwt(int cols, int rows, const char *filter_name, int filter, int level, int method);
Image_tree fdwt(gray **input);
Image_tree fdwt_wp(gray **input);
void idwt(Image_tree dwts, gray **output);
void idwt_wp(Image_tree dwts, gray **output);
int gen_pollen_filter(double *filter, double alpha, double beta, int which);
void dwt_pollen_filter(double alpha, double beta);
int gen_param_filter(double *filter, int n, double alpha[], int which);
void dwt_param_filter(double alpha[], int param_len[]);
void done_dwt();

#endif

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