0
|
1 #include "wm.h"
|
|
2
|
|
3 char *progname;
|
|
4
|
|
5 void usage(void) {
|
|
6 fprintf(stderr, "usage: %s [-h] [-C] [-o file] [-v n] -s file file\n\n", progname);
|
|
7 fprintf(stderr, "\t-C\t\toutput correlation only\n");
|
|
8 fprintf(stderr, "\t-h\t\tprint usage\n");
|
|
9 fprintf(stderr, "\t-o file\t\toutput file\n");
|
|
10 fprintf(stderr, "\t-v n\t\tverbosity level\n");
|
|
11 fprintf(stderr, "\t-s file\t\toriginal signature file\n");
|
|
12 exit(0);
|
|
13 }
|
|
14
|
|
15 int main(int argc, char *argv[]) {
|
|
16
|
|
17 FILE *in = stdin;
|
|
18 FILE *out = stdout;
|
|
19 FILE *sig = NULL;
|
|
20
|
|
21 char signature_name[MAXPATHLEN];
|
|
22 char output_name[MAXPATHLEN] = "(stdout)";
|
|
23 char input_name[MAXPATHLEN] = "(stdin)";
|
|
24
|
|
25 int c, i, j, n;
|
|
26 int in_level;
|
|
27 double *cumul_watermark, *orig_watermark;
|
|
28 int *cumul_watermark_count;
|
|
29 int sig_n, in_n;
|
|
30 double sig_a;
|
|
31 int sig_l;
|
|
32 int sig_e, sig_f;
|
|
33 char line[32];
|
|
34 double correlation, maxcorrelation;
|
|
35 double s1, s2, s3;
|
|
36
|
|
37 int verbose = 0;
|
|
38 int correlation_only = 0;
|
|
39
|
|
40 progname = argv[0];
|
|
41
|
|
42 while ((c = getopt(argc, argv, "h?Co:s:v:")) != EOF) {
|
|
43 switch (c) {
|
|
44 case 'h':
|
|
45 case '?':
|
|
46 usage();
|
|
47 break;
|
|
48 case 'C':
|
|
49 correlation_only = 1;
|
|
50 break;
|
|
51 case 'o':
|
|
52 if ((out = fopen(optarg, "w")) == NULL) {
|
|
53 fprintf(stderr, "%s: unable to open output file %s\n", progname, optarg);
|
|
54 exit(1);
|
|
55 }
|
|
56 strcpy(output_name, optarg);
|
|
57 break;
|
|
58 case 's':
|
|
59 if ((sig = fopen(optarg, "r")) == NULL) {
|
|
60 fprintf(stderr, "%s: unable to open signature file %s\n", progname, optarg);
|
|
61 exit(1);
|
|
62 }
|
|
63 strcpy(signature_name, optarg);
|
|
64 break;
|
|
65 case 'v':
|
|
66 verbose = atoi(optarg);
|
|
67 if (verbose < 0) {
|
|
68 fprintf(stderr, "%s: verbosity level %d out of range\n", progname, verbose);
|
|
69 exit(1);
|
|
70 }
|
|
71 break;
|
|
72 }
|
|
73 }
|
|
74
|
|
75 argc -= optind;
|
|
76 argv += optind;
|
|
77
|
|
78 if (argc > 1) {
|
|
79 usage();
|
|
80 exit(1);
|
|
81 }
|
|
82
|
|
83 if (argc == 1 && *argv[0] != '-')
|
|
84 if ((in = fopen(argv[0], "r")) == NULL) {
|
|
85 fprintf(stderr, "%s: unable to open input file %s\n", progname, argv[0]);
|
|
86 exit(1);
|
|
87 }
|
|
88 else
|
|
89 strcpy(input_name, argv[0]);
|
|
90
|
|
91 if (!sig) {
|
|
92 fprintf(stderr, "%s: original signature file not specified, use -s file option\n", progname);
|
|
93 exit(1);
|
|
94 }
|
|
95
|
|
96 fgets(line, sizeof(line), sig);
|
|
97 if (strspn(line, "ZHSG") < 4) {
|
|
98 fprintf(stderr, "%s: original signature file %s invalid\n", progname, signature_name);
|
|
99 exit(1);
|
|
100 }
|
|
101
|
|
102 fgets(line, sizeof(line), in);
|
|
103 if (strspn(line, "ZHWM") < 4) {
|
|
104 fprintf(stderr, "%s: watermark file %s invalid\n", progname, input_name);
|
|
105 exit(1);
|
|
106 }
|
|
107
|
|
108 fscanf(sig, "%d\n", &sig_n);
|
|
109 fscanf(in, "%d\n", &in_n);
|
|
110 if (sig_n != in_n) {
|
|
111 fprintf(stderr, "%s: watermark length mismatch (original %d, input %d)\n", progname, sig_n, in_n);
|
|
112 exit(1);
|
|
113 }
|
|
114 if (sig_n <= 0 || sig_n > 32000) {
|
|
115 fprintf(stderr, "%s: invalid original watermark length %d\n", progname, sig_n);
|
|
116 exit(1);
|
|
117 }
|
|
118 if (in_n != sig_n) {
|
|
119 fprintf(stderr, "%s: invalid watermark length %d, does not match signature length\n", progname, in_n);
|
|
120 exit(1);
|
|
121 }
|
|
122
|
|
123 fscanf(sig, "%lf\n", &sig_a);
|
|
124 fscanf(sig, "%d\n", &sig_l);
|
|
125 fscanf(sig, "%d\n", &sig_e);
|
|
126 fscanf(sig, "%d\n", &sig_f);
|
|
127 fscanf(sig, "%*[^\n\r]\n");
|
|
128
|
|
129 orig_watermark = malloc(sig_n * sizeof(double));
|
|
130 for (i = 0; i < sig_n; i++)
|
|
131 fscanf(sig, "%lf\n", &orig_watermark[i]);
|
|
132 fclose(sig);
|
|
133
|
|
134 fscanf(in, "%d\n", &in_level);
|
|
135
|
|
136 cumul_watermark = malloc(in_n * sizeof(double));
|
|
137 cumul_watermark_count = malloc(in_n * sizeof(int));
|
|
138
|
|
139 for (i = 0; i < in_n; i++) {
|
|
140 cumul_watermark_count[i] = 0;
|
|
141 cumul_watermark[i] = 0.0;
|
|
142 }
|
|
143
|
|
144 /*
|
|
145 * normalized correlation
|
|
146 * Craver, S., "Can Invisible Watermarks Resolve Rightful Ownership?", IBM Research Report, 1996, p. 5
|
|
147 */
|
|
148 maxcorrelation = -10000.0;
|
|
149 for (i = 0; i < in_level; i++) {
|
|
150 fscanf(in, "%d\n", &n);
|
|
151
|
|
152 s1 = s2 = s3 = 0.0;
|
|
153 for (j = 0; j < n; j++) {
|
|
154 double in_x, sig_x;
|
|
155
|
|
156 sig_x = orig_watermark[j];
|
|
157 fscanf(in, "%lf\n", &in_x);
|
|
158
|
|
159 s1 += sig_x * in_x;
|
|
160 s2 += in_x * in_x;
|
|
161 s3 += sig_x * sig_x;
|
|
162
|
|
163 if (verbose > 2)
|
|
164 fprintf(stderr, "%s: level %d; orig %f input %f\n", progname, i, sig_x, in_x);
|
|
165
|
|
166 cumul_watermark[j % in_n] += in_x;
|
|
167 cumul_watermark_count[j % in_n]++;
|
|
168 }
|
|
169
|
|
170 correlation = s1 / sqrt(s2 * s3);
|
|
171 if (correlation > maxcorrelation)
|
|
172 maxcorrelation = correlation;
|
|
173
|
|
174 if (!correlation_only)
|
|
175 fprintf(out, "%s: correlation level %d: %f\n", progname, i, correlation);
|
|
176 }
|
|
177
|
|
178 s1 = s2 = s3 = 0.0;
|
|
179 for (i = 0; i < in_n; i++) {
|
|
180 double in_x, sig_x;
|
|
181
|
|
182 in_x = cumul_watermark[i] / (double) cumul_watermark_count[i];
|
|
183 sig_x = orig_watermark[i];
|
|
184
|
|
185 s1 += sig_x * in_x;
|
|
186 s2 += in_x * in_x;
|
|
187 s3 += sig_x * sig_x;
|
|
188 }
|
|
189
|
|
190 correlation = s1 / sqrt(s2 * s3);
|
|
191 if (!correlation_only)
|
|
192 fprintf(out, "%s: cumultative correlation: %f\n", progname, correlation);
|
|
193
|
|
194 if (correlation > maxcorrelation)
|
|
195 maxcorrelation = correlation;
|
|
196
|
|
197 if (!correlation_only)
|
|
198 fprintf(out, "%s: max. correlation: %f\n", progname, maxcorrelation);
|
|
199 else
|
|
200 fprintf(out, "%f\n", maxcorrelation);
|
|
201
|
|
202 fclose(out);
|
|
203 fclose(in);
|
|
204
|
|
205 free(orig_watermark);
|
|
206 free(cumul_watermark);
|
|
207 free(cumul_watermark_count);
|
|
208
|
|
209 exit(0);
|
|
210 }
|