⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gen_dugad_sig.c

📁 包含了多个matlab编程在图像中加入水印的处理代码
💻 C
字号:
#include "wm.h"char *progname;void usage(void) {  fprintf(stderr, "usage: %s [-a n] [-e n] [-f n] [-F file] [-l n] [-n n] [-o file] [-s file] [-S n] [-t n] [-T n]\n\n", progname);  fprintf(stderr, "\t-a n\t\talpha factor (default 0.2)\n");  fprintf(stderr, "\t-d n\t\tdeviation (default 1.0)\n");  fprintf(stderr, "\t-e n\t\twavelet filtering method (default 2)\n");  fprintf(stderr, "\t-f n\t\tfilter number (default 1)\n");  fprintf(stderr, "\t-F file\t\tfilter definition file (default 'filter.dat')\n");  fprintf(stderr, "\t-h\t\tprint usage\n");  fprintf(stderr, "\t-l n\t\tdecomposition levels (default 3)\n");  fprintf(stderr, "\t-m n \t\tmean value (default 0.0)\n");  fprintf(stderr, "\t-n n\t\twatermark length (default 1000)\n");  fprintf(stderr, "\t-o file\t\toutput file\n");  fprintf(stderr, "\t-s file\t\tsignature to embed in input image\n");  fprintf(stderr, "\t-S n\t\tseed\n");  fprintf(stderr, "\t-t n\t\tcasting threshold (default 40.0)\n");  fprintf(stderr, "\t-T n\t\tdetection threshold (default 50.0)\n");  exit(0);}int main(int argc, char *argv[]) {  FILE *out = stdout;  FILE *sig = NULL;  char output_name[MAXPATHLEN] = "(stdout)";  char signature_name[MAXPATHLEN];  int c;  int i;  int n = 1000;  int s = 0;  int e = 2;  int f = 1;  int l = 3;  char F[MAXPATHLEN] = "filter.dat";  double a = 0.2;  double t1 = 40.0;  double t2 = 50.0;  double m = 0.0;  double d = 1.0;  progname = argv[0];  while ((c = getopt(argc, argv, "a:b:d:e:f:F:h?l:m:n:o:s:S:t:T:")) != EOF) {    switch (c) {      case 'a':        a = atof(optarg);        if (a <= 0.0) {          fprintf(stderr, "%s: alpha factor %f out of range\n", progname, a);          exit(1);        }        break;      case 'd':        d = atof(optarg);        if (d <= 0.0) {          fprintf(stderr, "%s: deviation %f out of range\n", progname, d);          exit(1);        }        break;      case 'e':        e = atoi(optarg);        if (e < 0) {          fprintf(stderr, "%s: wavelet filtering method %d out of range\n", progname, e);        }        break;      case 'f':        f = atoi(optarg);        if (f <= 0) {          fprintf(stderr, "%s: filter number %d out of range\n", progname, f);          exit(1);        }        break;      case 'F':        strcpy(F, optarg);        break;      case 'h':      case '?':        usage();        break;      case 'l':              l = atoi(optarg);        if (l <= 0) {          fprintf(stderr, "%s: decomposition level %d out of range\n", l);          exit(1);        }        break;      case 'm':        m = atof(optarg);        break;      case 'n':        n = atoi(optarg);        if (n < 1 || n > 32000) {          fprintf(stderr, "%s: watermark length %d out of range\n", progname, n);          exit(1);        }        break;      case 'o':        if ((out = fopen(optarg, "w")) == NULL) {          fprintf(stderr, "%s: unable to open output file %s\n", progname, optarg);          exit(1);        }        strcpy(output_name, optarg);        break;      case 's':        if ((sig = fopen(optarg, "r")) == NULL) {          fprintf(stderr, "%s: unable to open signature file %s\n", progname, optarg);          exit(1);        }        strcpy(signature_name, optarg);        break;      case 'S':        s = atoi(optarg);        break;      case 't':        t1 = atof(optarg);        if (t1 <= 0.0) {          fprintf(stderr, "%s: casting threshold %f out of range\n", progname, t1);          exit(1);        }        break;      case 'T':        t2 = atof(optarg);        if (t2 <= 0.0) {          fprintf(stderr, "%s: detection threshold %f out of range\n", progname, t2);          exit(1);        }        break;    }  }  argc -= optind;  argv += optind;  if (argc > 0) {    usage();    exit(1);  } if (sig) {    char line[32];    fgets(line, sizeof(line), sig);    if (strspn(line, "DGSG") >= 4) {      if (n == 0)        fscanf(sig, "%d\n", &n);      else        fscanf(sig, "%*d\n");      if (l == 0)        fscanf(sig, "%d\n", &l);      else        fscanf(sig, "%*d\n");      if (a == 0.0)        fscanf(sig, "%lf\n", &a);      else        fscanf(sig, "%*lf\n");      if (t1 == 0.0)        fscanf(sig, "%lf\n", &t1);      else        fscanf(sig, "%*lf\n");      if (t2 == 0.0)        fscanf(sig, "%lf\n", &t2);      else        fscanf(sig, "%*lf\n");      if (e < 0)        fscanf(sig, "%d\n", &e);      else        fscanf(sig, "%*d\n");      if (f == 0)        fscanf(sig, "%d\n", &f);      else        fscanf(sig, "%*d\n");      if (!strcmp(F, ""))        fscanf(sig, "%[^\n\r]\n", &F);      else        fscanf(sig, "%*[^\n\r]\n");    }    else {      fprintf(stderr, "%s: invalid signature file %s\n", progname, signature_name);      exit(1);    }  }  if (s)    srandom(s);  else    srandom(time(NULL) * getpid());  fprintf(out, "DGSG\n");  fprintf(out, "%d\n", n);  fprintf(out, "%d\n", l);  fprintf(out, "%f\n", a);  fprintf(out, "%f\n", t1);  fprintf(out, "%f\n", t2);  fprintf(out, "%d\n", e);  fprintf(out, "%d\n", f);  fprintf(out, "%s\n", F);  n >>= 1;  while (n > 0) {    double x;    double x1, x2;             /*     * Algorithm P (Polar method for normal deviates),     * Knuth, D., "The Art of Computer Programming", Vol. 2, 3rd Edition, p. 122     */    do {      x1 = 2.0 * ((random() & RAND_MAX) / ((double) RAND_MAX + 1.0)) - 1.0;      x2 = 2.0 * ((random() & RAND_MAX) / ((double) RAND_MAX + 1.0)) - 1.0;      x = x1 * x1 + x2 * x2;     } while (x >= 1.0);    x1 *= sqrt((-2.0) * log(x) / x);    x2 *= sqrt((-2.0) * log(x) / x);            fprintf(out, "%f\n", m + d * x1);    fprintf(out, "%f\n", m + d * x2);          n--;  }  fclose(out);  exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -