Issue 2134: removed obsolete raw highlight preservation setting from GUI (still left in procparams for backwards compatilibility)
This commit is contained in:
32
rtengine/klt/convolve.h
Normal file
32
rtengine/klt/convolve.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/*********************************************************************
|
||||
* convolve.h
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef _CONVOLVE_H_
|
||||
#define _CONVOLVE_H_
|
||||
|
||||
#include "klt.h"
|
||||
#include "klt_util.h"
|
||||
|
||||
void _KLTToFloatImage(
|
||||
KLT_PixelType *img,
|
||||
int ncols, int nrows,
|
||||
_KLT_FloatImage floatimg);
|
||||
|
||||
void _KLTComputeGradients(
|
||||
_KLT_FloatImage img,
|
||||
float sigma,
|
||||
_KLT_FloatImage gradx,
|
||||
_KLT_FloatImage grady);
|
||||
|
||||
void _KLTGetKernelWidths(
|
||||
float sigma,
|
||||
int *gauss_width,
|
||||
int *gaussderiv_width);
|
||||
|
||||
void _KLTComputeSmoothedImage(
|
||||
_KLT_FloatImage img,
|
||||
float sigma,
|
||||
_KLT_FloatImage smooth);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user