wavelib/auxiliary/denoise.h

26 lines
456 B
C
Raw Normal View History

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