-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcDiff.c
114 lines (94 loc) · 3.23 KB
/
calcDiff.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* calcDiff.c
*
* Created on: Jan 31, 2011
* Author: mousomer
*/
#include "libxyn.h"
#define USG_STRING "[-v %:] [-type %s:dataType] [-lift %:] [-inPlace %:] [-startHigh %:] [-length %d:len] %s:file1 %s:file2"
xynString waveName, inpName, outName, dataType;
int verbose=0, lifting=0, inPlace=0, startHigh=0, length=0, noRescale=0;
#define PREPARE_DATA(_t_) { \
nBytes = sizeof(_t_); \
len = (length > 0) ? length : len/nBytes; \
DPRINTF(DEBUG_PROCESS,"\npreparing data. Length %d/=%d\n", len, nBytes); \
_t_##Input = (_t_*) malloc(nBytes * len); \
_t_##Output = (_t_*) malloc(nBytes * len); \
assert(_t_##Input && _t_##Output ); \
fread(_t_##Input, nBytes, len, fpInp); \
memcpy(_t_##Output, _t_##Input, len*nBytes ); \
if (verbose) displayArray_##_t_(_t_##Output, len, stdout ); }
int main(int argc, char* argv[])
{
if (parseParameters(argc, argv, USG_STRING,
&verbose, outName, &noRescale, dataType, &lifting, &inPlace, &startHigh, &length, waveName, inpName))
return (FAIL);
/* transform types:
0: shuffled, non lift
1: inPlace, non lift
2: shuffled, lifting implementation
3: inPlace, lifting implementation */
//int transformType = 4*(dataType[0]=='f') + 2*(lifting>0) + (inPlace>0);
if (verbose)
printf("%s - verb(d): %d out(s): %s type(s): %s startHigh(d): %d length(d): %d wave(s): %s inp(s): %s\n",
argv[0], verbose, outName, dataType, startHigh, length, waveName, inpName);
if (stringNull(outName)) {
stringCopy(outName, inpName);
strcat(outName, ".fwd");
}
if (stringNull(dataType))
stringCopy(dataType, "d");
waveFilterPtr wfp = wavGetWaveletName (waveName);
waveLiftPtr wlp = wavGetLiftWaveName (waveName);
assert(wfp); assert(wlp);
if (verbose)
printf("dwt1d %s: %s --> %s (type %c)\n", waveName, inpName, outName, dataType[0]);
FILE* fpInp = fopen(inpName, "r");
assert (fpInp);
FILE* fpOut = fopen(outName, "w");
assert (fpOut);
long len = getFileSize(inpName);
int nBytes = sizeof(int);
int *intInput=NULL, *intOutput=NULL;
float *floatInput=NULL, *floatOutput=NULL;
if ( dataType[0] == 'd' ) {
PREPARE_DATA(int);
if ( !noRescale )
upScaleVect_i( intInput, len );
if ( lifting )
{
liftTransform_i(intInput, len, startHigh, inPlace, noRescale, wlp);
// rescaleVect_i(intInput, len);
if (verbose) displayArray_i(intInput, len, stdout );
fwrite(intInput, nBytes, len, fpOut);
}
else
{
wavTransform_i(intInput, intOutput, len, startHigh, wfp);
// rescaleVect_i(intInput, len);
if (verbose) displayArray_i(intOutput, len, stdout );
fwrite(intOutput, nBytes, len, fpOut);
}
}
else {
PREPARE_DATA(float);
if ( lifting )
{
liftTransform_f(floatInput, len, startHigh, inPlace, noRescale, wlp);
if (verbose) displayArray_f(floatInput, len, stdout );
fwrite(floatInput, nBytes, len, fpOut);
}
else
{
wavTransform_f(floatInput, floatOutput, len, startHigh, inPlace, wfp);
if (verbose) displayArray_f(floatOutput, len, stdout );
fwrite(floatOutput, nBytes, len, fpOut);
}
}
fclose(fpInp);fclose(fpOut);
XYN_DPRINTF(DEBUG_PROCESS,"closed files\n");
XynFree(intInput); XynFree(floatInput);
XynFree(intOutput); XynFree(floatOutput);
XYN_DPRINTF(DEBUG_PROCESS,"memory freed\n");
return OK;
}