about summary refs log tree commit diff
path: root/editor/ppmdist.c
blob: e8f17bff9b106522b2c1d5f021e53ed4670522bf (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
#include "ppm.h"
#include "mallocvar.h"


/*
 * Yep, it's a very simple algorithm, but it was something I wanted to have
 * available.
 */

struct colorToGrayEntry {
    pixel           color;
    gray            gray;
    int             frequency;
};

/*
 * BUG: This number was chosen pretty arbitrarily.  The program is * probably
 * only useful for a very small numbers of colors - and that's * not only
 * because of the O(n) search that's used.  The idea lends * itself primarily
 * to low color (read: simple, machine generated) images.
 */
#define MAXCOLORS 255



static gray
newGrayValue(pixel *pix, struct colorToGrayEntry *colorToGrayMap, int colors) {

    int color;
    /*
     * Allowing this to be O(n), since the program is intended for small
     * n.  Later, perhaps sort by color (r, then g, then b) and bsearch.
     */
    for (color = 0; color < colors; color++) {
        if (PPM_EQUAL(*pix, colorToGrayMap[color].color))
            return colorToGrayMap[color].gray;
    }
    pm_error("This should never happen - contact the maintainer");
    return (-1);
}



#ifndef LITERAL_FN_DEF_MATCH
static qsort_comparison_fn cmpColorToGrayEntryByIntensity;
#endif

static int
cmpColorToGrayEntryByIntensity(const void * const a,
                               const void * const b) {

    const struct colorToGrayEntry * const entry1P = a;
    const struct colorToGrayEntry * const entry2P = b;

    return entry1P->gray - entry2P->gray;
}



#ifndef LITERAL_FN_DEF_MATCH
static qsort_comparison_fn cmpColorToGrayEntryByFrequency;
#endif

static int
cmpColorToGrayEntryByFrequency(const void * const a,
                               const void * const b) {

    const struct colorToGrayEntry * const entry1P = a;
    const struct colorToGrayEntry * const entry2P = b;

    return entry1P->frequency - entry2P->frequency;
}



int
main(int argc, char *argv[]) {

    FILE           *ifp;
    int             col, cols, row, rows, color, colors, argn;
    int             frequency;
    pixval          maxval;
    pixel         **pixels;
    pixel          *pP;
    colorhist_vector hist;
    gray           *grayrow;
    gray           *gP;
    struct colorToGrayEntry *colorToGrayMap;


    ppm_init(&argc, argv);

    argn = 1;
    /* Default is to sort colors by intensity */
    frequency = 0;

    while (argn < argc && argv[argn][0] == '-' && argv[argn][1] != '\0') {
        if (pm_keymatch(argv[argn], "-frequency", 2))
            frequency = 1;
        else if (pm_keymatch(argv[argn], "-intensity", 2))
            frequency = 0;
        else
            pm_usage( "[-frequency|-intensity] [ppmfile]" );
        ++argn;
    }

    if (argn < argc) {
        ifp = pm_openr(argv[argn]);
        ++argn;
    } else
        ifp = stdin;

    pixels = ppm_readppm(ifp, &cols, &rows, &maxval);
    pm_close(ifp);
    /* all done with the input file - it's entirely in memory */

    /*
     * Compute a histogram of the colors in the input.  This is good for
     * both frequency, and indirectly the intensity, of a color.
     */
    hist = ppm_computecolorhist(pixels, cols, rows, MAXCOLORS, &colors);

    if (hist == (colorhist_vector) 0)
        /*
         * BUG: This perhaps should use an exponential backoff, in
         * the number of colors, until success - cf pnmcolormap's
         * approach.  The results are then more what's expected, but
         * not necessarily very useful.
         */
        pm_error("Too many colors - Try reducing with pnmquant");

    /* copy the colors into another structure for sorting */
    MALLOCARRAY(colorToGrayMap, colors);
    for (color = 0; color < colors; color++) {
        colorToGrayMap[color].color = hist[color].color;
        colorToGrayMap[color].frequency = hist[color].value;
        /*
         * This next is derivable, of course, but it's far faster to
         * store it precomputed.  This can be skipped, when sorting
         * by frequency - but again, for a small number of colors
         * it's a small matter.
         */
        colorToGrayMap[color].gray = ppm_luminosity(hist[color].color);
    }

    /*
     * sort by intensity - sorting by frequency (in the histogram) is
     * worth considering as a future addition.
     */
    if (frequency)
        qsort(colorToGrayMap, colors, sizeof(struct colorToGrayEntry),
              &cmpColorToGrayEntryByFrequency);
    else
        qsort(colorToGrayMap, colors, sizeof(struct colorToGrayEntry),
              &cmpColorToGrayEntryByIntensity);

    /*
     * create mapping between the n colors in input, to n evenly spaced
     * grayscale intensities.  This is done by overwriting the neatly
     * formed gray values corresponding to the input-colors, with a new
     * set of evenly spaced gray values.  Since maxval can be changed on
     * a lark, we just use gray levels 0..colors-1, and adjust maxval
     * accordingly
     */
    maxval = colors - 1;
    for (color = 0; color < colors; color++)
        colorToGrayMap[color].gray = color;

    /* write pgm file, mapping colors to intensities */
    pgm_writepgminit(stdout, cols, rows, maxval, 0);

    grayrow = pgm_allocrow(cols);

    for (row = 0; row < rows; row++) {
        for (col = 0, pP = pixels[row], gP = grayrow; col < cols;
             col++, pP++, gP++)
            *gP = newGrayValue(pP, colorToGrayMap, colors);
        pgm_writepgmrow(stdout, grayrow, cols, maxval, 0);
    }

    pm_close(stdout);

    exit(0);
}