Files
rawTherapee/rtengine/klt/pyramid.h
Hombre 8b2eac9a3d Pipette and "On Preview Widgets" branch. See issue 227
The pipette part is already working quite nice but need to be finished. The widgets part needs more work...
2014-01-21 23:37:36 +01:00

33 lines
605 B
C

/*********************************************************************
* pyramid.h
*********************************************************************/
#ifndef _PYRAMID_H_
#define _PYRAMID_H_
#include "klt_util.h"
typedef struct {
int subsampling;
int nLevels;
_KLT_FloatImage *img;
int *ncols, *nrows;
} _KLT_PyramidRec, *_KLT_Pyramid;
_KLT_Pyramid _KLTCreatePyramid(
int ncols,
int nrows,
int subsampling,
int nlevels);
void _KLTComputePyramid(
_KLT_FloatImage floatimg,
_KLT_Pyramid pyramid,
float sigma_fact);
void _KLTFreePyramid(
_KLT_Pyramid pyramid);
#endif