Files
wavelib/auxiliary/denoise.h

26 lines
480 B
C
Raw Normal View History

2017-08-07 06:40:11 +05:30
/*
Copyright (c) 2017, Rafat Hussain
*/
#ifndef DENOISE_H_
#define DENOISE_H_
#include "waux.h"
2017-08-07 06:40:11 +05:30
#ifdef __cplusplus
extern "C" {
#endif
2017-08-11 16:21:33 +05:30
//depends on J
void visushrink(double *signal,int N,int J,char *wname,char *method,char *ext,char *thresh,char *level,double *denoised);
2017-08-07 06:40:11 +05:30
void sureshrink(double *signal,int N,int J,char *wname,char *method,char *ext,char *thresh,char *level,double *denoised);
2017-08-08 18:20:20 +05:30
2017-08-07 06:40:11 +05:30
#ifdef __cplusplus
}
#endif
#endif /* DENOISE_H_ */