about summary refs log tree commit diff
path: root/editor/pammixmulti.c
blob: cd8f4a3fb5a5cf260435338314ca988ce3135aa6 (plain) (blame)
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*************************************************
 * Blend multiple Netpbm files into a single one *
 *                                               *
 * By Scott Pakin <scott+pbm@pakin.org>          *
 *************************************************/

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <float.h>
#include <math.h>
#include "pam.h"
#include "shhopt.h"
#include "mallocvar.h"
#include "nstring.h"

typedef enum {
  BLEND_AVERAGE,     /* Take the average color of all pixels */
  BLEND_RANDOM,      /* Take each pixel color from a randomly selected image */
  BLEND_MASK         /* Take each pixel color from the image indicated by a mask */
} blendType;

static const unsigned int randSamples = 1024;   /* Random samples to draw per file */

struct programState {
  blendType blend;                /* How to blend the files */
  unsigned int nFiles;            /* Number of input files */
  const char ** inFileNames;      /* Name of each input file */
  struct pam * inPam;             /* List of input-file PAM structures */
  tuple ** inTupleRows;           /* Current row from each input file */
  const char * outFileName;       /* Name of the output file */
  struct pam outPam;              /* Output-file PAM structure */
  tuple * outTupleRow;            /* Row to write to the output file */
  const char * maskFileName;      /* Name of the image-mask file */
  struct pam maskPam;             /* PAM structure for the image mask */
  tuple * maskTupleRow;           /* Row to read from the mask file */
  double sigma;                   /* Standard deviation when selecting images via a mask */
  unsigned long ** imageWeights;  /* Per-image weights as a function of grayscale level */
};

/* Parse the command line. */
static void
parseCommandLine(int argc, const char ** argv,
                 struct programState * const stateP) {
  optStruct3 opt;
  unsigned int option_def_index = 0;
  optEntry * option_def;
  const char * blend_string = "average";
  unsigned int blend_spec = 0;
  unsigned int outfile_spec = 0;
  unsigned int maskfile_spec = 0;
  unsigned int stdev_spec = 0;
  float sigma;
  int i;

  /* Define the allowed command-line options. */
  MALLOCARRAY(option_def, 100);
  OPTENT3('b', "blend", OPT_STRING, &blend_string, &blend_spec, 0);
  OPTENT3('o', "outfile", OPT_STRING, &stateP->outFileName, &outfile_spec, 0);
  OPTENT3('m', "maskfile", OPT_STRING, &stateP->maskFileName, &maskfile_spec, 0);
  OPTENT3('s', "stdev", OPT_FLOAT, &sigma, &stdev_spec, 0);
  opt.opt_table = option_def;
  opt.short_allowed = 1;
  opt.allowNegNum = 0;

  /* Parse the command line. */
  pm_optParseOptions3(&argc, (char **) argv, opt, sizeof(opt), 0);
  if (!outfile_spec)
    stateP->outFileName = "-";
  if (!strcmp(blend_string, "average"))
    stateP->blend = BLEND_AVERAGE;
  else if (!strcmp(blend_string, "random"))
    stateP->blend = BLEND_RANDOM;
  else if (!strcmp(blend_string, "mask"))
    stateP->blend = BLEND_MASK;
  else
    pm_error("Unrecognized blend type \"%s\"", blend_string);
  if (stateP->blend == BLEND_MASK) {
    if (maskfile_spec == 0)
      pm_error("--maskfile=<filename> must be used with --blend=mask");
    stateP->sigma = stdev_spec == 1 ? (double)sigma : 0.25;
  }
  else {
    if (maskfile_spec != 0)
      pm_message("Ignoring the mask file because --blend=mask was not specified");
    if (stdev_spec != 0)
      pm_message("Ignoring the image standard deviation because --blend=mask was not specified");
  }
  if (argc < 2)
    pm_error("You must provide the names of the files to blend together");
  stateP->nFiles = argc - 1;
  MALLOCARRAY(stateP->inFileNames, stateP->nFiles);
  for (i = 1; i < argc; i++)
    stateP->inFileNames[i - 1] = argv[i];
  free(option_def);
}

/* Open all of the input files and the output file.  Abort if the
 * input files don't all have the same size and format. */
static void
openFiles(struct programState * const stateP) {
  struct pam * inPam;
  unsigned int i;

  MALLOCARRAY(stateP->inPam, stateP->nFiles);
  MALLOCARRAY(stateP->inTupleRows, stateP->nFiles);

  /* Open all of the input files. */
  inPam = stateP->inPam;
  for (i = 0; i < stateP->nFiles; i++) {
    FILE * ifP = pm_openr(stateP->inFileNames[i]);
    pnm_readpaminit(ifP, &inPam[i], PAM_STRUCT_SIZE(tuple_type));
    if (inPam[i].width != inPam[0].width || inPam[i].height != inPam[0].height)
      pm_error("All images must have the same dimensions");
    if (inPam[i].depth != inPam[0].depth ||
        inPam[i].maxval != inPam[0].maxval ||
        strcmp(inPam[i].tuple_type, inPam[0].tuple_type))
      pm_error("All images must have the same number and range of colors");
    stateP->inTupleRows[i] = pnm_allocpamrow(&inPam[i]);
  }

  /* Open the mask file for reading. */
  if (stateP->blend == BLEND_MASK) {
    struct pam * maskPam = &stateP->maskPam;
    FILE * mfP = pm_openr(stateP->maskFileName);
    pnm_readpaminit(mfP, maskPam, PAM_STRUCT_SIZE(tuple_type));
    if (maskPam->width != inPam[0].width || maskPam->height != inPam[0].height)
      pm_error("The mask image must have the same dimensions as the input images");
    if (maskPam->depth > 1)
      pm_message("Ignoring all but the first channel of the mask image");
    stateP->maskTupleRow = pnm_allocpamrow(maskPam);
  }

  /* Open the output file for writing. */
  stateP->outPam = inPam[0];
  stateP->outPam.file = pm_openw(stateP->outFileName);
  stateP->outTupleRow = pnm_allocpamrow(&stateP->outPam);
  pnm_writepaminit(&stateP->outPam);
}

/* Blend one tuple of the input images into a new tuple by selecting a tuple
 * from a random input image. */
static void
blendTuplesRandom(struct programState * const stateP, unsigned int col, sample * outSamps) {
  unsigned int depth = stateP->inPam[0].depth;
  unsigned int samp;

  unsigned int img = (unsigned int) (random() % stateP->nFiles);
  for (samp = 0; samp < depth; samp++)
    outSamps[samp] = ((sample *)stateP->inTupleRows[img][col])[samp];
}

/* Blend one tuple of the input images into a new tuple by averaging all input
 * tuples. */
static void
blendTuplesAverage(struct programState * const stateP, unsigned int col, sample * outSamps) {
  unsigned int depth = stateP->inPam[0].depth;
  unsigned int nFiles = stateP->nFiles;
  unsigned int samp;

  for (samp = 0; samp < depth; samp++) {
    unsigned int img;

    outSamps[samp] = 0;
    for (img = 0; img < nFiles; img++)
      outSamps[samp] += ((sample *)stateP->inTupleRows[img][col])[samp];
    outSamps[samp] /= nFiles;
  }
}

/* Return two normally distributed random numbers. */
static void
random_normal_2(double *r1, double *r2) {
  double u1, u2;

  do {
    u1 = drand48();
    u2 = drand48();
  }
  while (u1 <= DBL_EPSILON);
  *r1 = sqrt(-2.0*log(u1))*cos(2.0*M_PI*u2);
  *r2 = sqrt(-2.0*log(u1))*sin(2.0*M_PI*u2);
}

/* Precompute the weight to give to each image as a function of grayscale level. */
static void
precomputeImageWeights(struct programState * const stateP) {
  unsigned int maxGray = (unsigned int) stateP->maskPam.maxval;
  unsigned int nFiles = stateP->nFiles;
  unsigned int i, j, k;

  /* Allocate memory for the image weights, */
  MALLOCARRAY(stateP->imageWeights, maxGray + 1);
  for (i = 0; i <= maxGray; i++) {
    MALLOCARRAY(stateP->imageWeights[i], nFiles);
    memset(stateP->imageWeights[i], 0, nFiles*sizeof(unsigned long));
  }

  /* Populate the image-weight arrays. */
  for (i = 0; i <= maxGray; i++) {
    double pctGray = i / (double)maxGray;

    for (j = 0; j < nFiles*randSamples; ) {
      double r[2];
      int img;

      random_normal_2(&r[0], &r[1]);
      for (k = 0; k < 2; k++) {
        img = (int) (r[k]*stateP->sigma + pctGray*nFiles*0.999999);  /* Scale [0, 1] to [0, 1) (sort of). */
        if (img >= 0 && img < (int)nFiles) {
          stateP->imageWeights[i][img]++;
          j++;
        }
      }
    }
  }
}

/* Blend one tuple of the input images into a new tuple according to the gray
 * levels specified in a mask file. */
static void
blendTuplesMask(struct programState * const stateP, unsigned int col, sample * outSamps) {
  unsigned int depth = stateP->inPam[0].depth;
  sample grayLevel = ((sample *)stateP->maskTupleRow[col])[0];
  unsigned int nFiles = stateP->nFiles;
  unsigned int samp;
  unsigned int img;

  for (samp = 0; samp < depth; samp++)
    outSamps[samp] = 0;
  for (img = 0; img < nFiles; img++) {
    unsigned long weight = stateP->imageWeights[grayLevel][img];
    if (weight != 0)
      for (samp = 0; samp < depth; samp++)
        outSamps[samp] += ((sample *)stateP->inTupleRows[img][col])[samp] * weight;
  }
  for (samp = 0; samp < depth; samp++)
    outSamps[samp] /= randSamples*nFiles;
}

/* Blend one row of input images into a new row. */
static void
blendImageRow(struct programState * const stateP) {
  unsigned int width = stateP->inPam[0].width;
  unsigned int col;

  for (col = 0; col < width; col++) {
    sample * outSamps = (sample *)stateP->outTupleRow[col];

    switch (stateP->blend) {
    case BLEND_RANDOM:
      /* Take each pixel from a different, randomly selected image. */
      blendTuplesRandom(stateP, col, outSamps);
      break;

    case BLEND_AVERAGE:
      /* Average each sample across all the images. */
      blendTuplesAverage(stateP, col, outSamps);
      break;

    case BLEND_MASK:
      /* Take each pixel from the image specified by the mask image. */
      blendTuplesMask(stateP, col, outSamps);
      break;

    default:
      pm_error("Internal error: Invalid blend type");
      break;
    }
  }
}

/* Blend the images row-by-row into a new image. */
static void
blendImages(struct programState * const stateP) {
  unsigned int nRows = (unsigned int) stateP->inPam[0].height;
  unsigned int img;
  unsigned int row;

  for (row = 0; row < nRows; row++) {
    for (img = 0; img < stateP->nFiles; img++)
      pnm_readpamrow(&stateP->inPam[img], stateP->inTupleRows[img]);
    if (stateP->blend == BLEND_MASK)
      pnm_readpamrow(&stateP->maskPam, stateP->maskTupleRow);
    blendImageRow(stateP);
    pnm_writepamrow(&stateP->outPam, stateP->outTupleRow);
  }
}

/* Deallocate all of the resources we allocated. */
static void
deallocateResources(struct programState * const stateP) {
  unsigned int i;

  if (stateP->blend == BLEND_MASK) {
    for (i = 0; i <= stateP->maskPam.maxval; i++)
      free(stateP->imageWeights[i]);
    free(stateP->imageWeights);
    pnm_freepamrow(stateP->maskTupleRow);
    pm_close(stateP->maskPam.file);
  }
  for (i = 0; i < stateP->nFiles; i++) {
    pnm_freepamrow(stateP->inTupleRows[i]);
    pm_close(stateP->inPam[i].file);
  }
  free(stateP->outTupleRow);
  free(stateP->inTupleRows);
  free(stateP->inPam);
  free(stateP->inFileNames);
  pm_close(stateP->outPam.file);
}

int
main(int argc, const char * argv[]) {
  struct programState state;

  pm_proginit(&argc, argv);
  parseCommandLine(argc, argv, &state);
  openFiles(&state);
  if (state.blend == BLEND_MASK)
    precomputeImageWeights(&state);
  blendImages(&state);
  deallocateResources(&state);
  return 0;
}