commit : sureshrink error correction

This commit is contained in:
Rafat Hussain
2017-08-09 04:50:41 +05:30
parent fa68a811af
commit ee88fece29
3 changed files with 8 additions and 5 deletions

View File

@@ -39,9 +39,10 @@ int main() {
inp[i] = temp[i];
}
visushrink(inp,N,wname,method,ext,thresh,oup);
//visushrink(inp,N,wname,method,ext,thresh,oup);
sureshrink(inp,N,wname,method,ext,thresh,oup);
ofp = fopen("denoised.txt", "w");
ofp = fopen("denoiseds.txt", "w");
for(i = 0; i < N;++i) {
fprintf(ofp,"%g \n",oup[i]);