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

📄 wm_frid2_d.c

📁 包含了多个matlab编程在图像中加入水印的处理代码
💻 C
字号:
#include "wm.h"#include "dct.h"#include "pgm.h"#include "signature.h"#include "frid2_common.h"char *progname;void usage(void) {  fprintf(stderr, "usage: %s [-a n] [-h] [-b n] [-n n] [-o file] [-v n] -s file file\n\n", progname);  fprintf(stderr, "\t-a n\t\talpha factor low freq. embedding strength\n");  fprintf(stderr, "\t-b n\t\tbeta factor for weighted correlation (default 0)\n");  fprintf(stderr, "\t-h\t\tprint usage\n");  fprintf(stderr, "\t-n n\t\tnormalisation factor (default 1024.0)\n");  fprintf(stderr, "\t-o file\t\tfile for extracted watermark information\n");  fprintf(stderr, "\t-s file\t\toriginal signature file\n");  fprintf(stderr, "\t-v n\t\tverbosity level\n");  exit(0);}int main(int argc, char *argv[]) {  FILE *in = stdin;  FILE *out = stdout;  FILE *sig = NULL;  char output_name[MAXPATHLEN] = "(stdout)";  char input_name[MAXPATHLEN] = "(stdin)";  char signature_name[MAXPATHLEN];  int c;  int row, col;  int n;  double normalization = 1024.0;  int seed, format;  double alpha = 0.0;  double beta = 0.0;  double correlation;  gray **image;  double **coeffs;  double mean, derivation, mult_factor;  int rows, cols;  gray maxval;  int verbose = 0;  progname = argv[0];  pgm_init(&argc, argv); wm_init2();  while ((c = getopt(argc, argv, "a:b:n:h?s:o:v:")) != EOF) {    switch (c) {      case 'a':        alpha = atof(optarg);        if (alpha <= 0.0) {          fprintf(stderr, "%s: alpha factor %f out of range\n", progname, alpha);          exit(1);        }        break;      case 'b':        beta = atof(optarg);        if (beta <= 0.0) {          fprintf(stderr, "%s: beta factor %f out of range\n", progname, beta);          exit(1);        }        break;      case 'n':        normalization = atof(optarg);        if (normalization < 0) {          fprintf(stderr, "%s: normalisation factor %f out of range\n", progname, normalization);          exit(1);        }        break;      case 'h':      case '?':        usage();        break;      case 'o':        if ((out = fopen(optarg, "wb")) == 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 'v':        verbose = atoi(optarg);        if (verbose < 0) {          fprintf(stderr, "%s: verbosity level %d out of range\n", progname, verbose);          exit(1);        }        break;    }  }  argc -= optind;  argv += optind;  if (argc > 1) {    usage();    exit(1);  }	  if (argc == 1 && *argv[0] != '-')    if ((in = fopen(argv[0], "rb")) == NULL) {      fprintf(stderr, "%s: unable to open input file %s\n", progname, argv[0]);      exit(1);    }    else      strcpy(input_name, argv[0]);  if (sig) {    char line[32];    fgets(line, sizeof(line), sig);    if (strspn(line, "FR2SG") >= 5) {      fscanf(sig, "%d\n", &nbit_signature1);      if (alpha == 0.0)        fscanf(sig, "%lf\n", &alpha);      else        fscanf(sig, "%*lf\n");      fscanf(sig, "%*lf\n");      fscanf(sig, "%d\n", &seed);      n_signature1 = NBITSTOBYTES(nbit_signature1);      fread(signature1, sizeof(char), n_signature1, sig);      fscanf(sig, "\n");      srandom(seed);    }    else {      fprintf(stderr, "%s: invalid signature file %s\n", progname, signature_name);      exit(1);    }    fclose(sig);  }  else {    fprintf(stderr, "%s: signature file not specified, use -s file option\n", progname);    exit(1);  }  pgm_readpgminit(in, &cols, &rows, &maxval, &format);  image = pgm_allocarray(cols, rows);  for (row = 0; row < rows; row++)    pgm_readpgmrow(in, image[row], cols, maxval, format);  fclose(in);  // calculate mean malue  mean = 0.0;  for (row = 0; row < rows; row++)     for (col = 0; col < cols; col++)      mean += image[row][col];  mean /=  cols * rows;  // calculate derivation  derivation = 0.0;  for (row = 0; row < rows; row++)     for (col = 0; col < cols; col++)      derivation += sqr(image[row][col] - mean);  derivation = sqrt(derivation / (cols * rows - 1));  mult_factor = normalization / (sqrt(cols * rows) * derivation);   if (verbose > 5)    fprintf(stderr, "%s: mean %f, derivation %f, mult_factor %f\n", progname, mean, derivation, mult_factor);	  // normalize image  coeffs = alloc_coeffs(cols, rows);  for (row = 0; row < rows; row++)     for (col = 0; col < cols; col++)      coeffs[row][col] = (image[row][col] - mean) * mult_factor;	  if (rows == cols) {    init_dct_NxN(cols, rows);    fdct_inplace_NxN(coeffs);  }//  else {//    init_dct_NxM(cols, rows);//    fdct_NxM(coeffs);//  }  fprintf(out, "FR2WM\n");  fprintf(out, "%d\n", nbit_signature1);  correlation = detect_low_freq(coeffs, cols, rows, alpha, beta, verbose);  if (verbose > 2)    fprintf(stderr, "low_freq correlation: %f\n", correlation);  fwrite(signature2, sizeof(char), NBITSTOBYTES(nbit_signature1), out);  fprintf(out, "\n");  fprintf(out, "%d\n", nbit_signature1);  correlation = detect_med_freq(coeffs, cols, rows, seed, verbose);  if (verbose > 2)    fprintf(stderr, "med_freq correlation: %f\n", correlation);  fwrite(signature2, sizeof(char), NBITSTOBYTES(nbit_signature1), out);  fprintf(out, "\n");    fclose(out);  free_coeffs(coeffs);  pgm_freearray(image, rows);  exit(0);}

⌨️ 快捷键说明

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