summary refs log tree commit diff
path: root/pamlookup.html
blob: fb938a88d48cc9731b4d02844ce27890f17a19a9 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD><title>Pamlookup User Manual</title></HEAD>
<BODY>
<H1>pamlookup</H1>
Updated: 10 November 2002
<BR>
<A HREF="#index">Table Of Contents</A>

<A NAME="lbAB">&nbsp;</A>
<H2>NAME</H2>
pamlookup - map an image to a new image by using it as indices into a table

<A NAME="lbAC">&nbsp;</A>
<H2>SYNOPSIS</H2>

<B>pamlookup</B>
<B>-lookupfile=</B><i>lookupfile</i>
<B>-missingcolor=</B><i>color</i>
[<B>-fit</B>]
<I>indexfile</I>


<P>All options can be abbreviated to their shortest unique prefix.
You may use two hyphens instead of one.  You may separate an option
name and its value with white space instead of an equals sign.

<A NAME="lbAD">&nbsp;</A>
<H2>DESCRIPTION</H2>

<p>This program is part of <a href="index.html">Netpbm</a>.

<p><b>pamlookup</b> takes a two dimensional array of indices and a lookup
table as input.  For each position in the index array, it looks up the index
in the lookup table and places the result of the lookup in the output image.
The output thus has the same width and height as the index image, and tuple
types determined by the lookup table.

<p>An index is either a whole number or an ordered pair of whole
numbers.  If the index image has a depth of one, each index in it is a
whole number: the value of the one sample.  If the index image has a
depth greater than one, each index in it is an ordered pair of the first
and second samples in the relevant tuple.

<p>The lookup table is a PAM or PNM image.  If the index image
contains whole number indices, the lookup image is a single row and
the index is a column number.  The lookup result is the value of the
tuple or pixel at the indicated column in the one row in the lookup
table.  If the index image contains ordered pair indices, the first
element of the ordered pair is a row number and the second element of
the ordered pair is a column number.  The lookup result is the value
of the tuple or pixel at the indicated row and column in the lookup
table.

<p>For example:  Consider an index image consisting of a 3x2x1 PAM
as follows:

<table summary="3x2x1 index image">
<?makeman l l l. ?>
<tr> <td>0</td> <td>1</td> <td>0</td> </tr>
<tr> <td>2</td> <td>2</td> <td>2</td> </tr>
</table>

and a lookup table consisting of a 3x1 PPM image as follows:

<table summary="3x1 lookup table">
<?makeman l l l. ?>
<tr> <td>red</td> <td>yellow</td> <td>beige</td> </tr>
</table>

The lookup table above says Index 0 corresponds to the color red,
Index 1 corresponds to yellow, and Index 2 corresponds to beige.  The output
of <b>pamlookup</b> is the following PPM image:

<table summary="output image">
<?makeman l l l. ?>
<tr> <td>red</td> <td>yellow</td> <td>red</td> </tr>
<tr> <td>beige</td> <td>beige</td> <td>beige</td> </tr>
</table>

<p>Now let's look at an example of the more complex case where the
indices are ordered pairs of whole numbers instead of whole numbers.
Our index image will be this 3x2x2 PAM image:

<table summary="3x2x2 index image">
<?makeman l l l. ?>
<tr> <td>(0,0)</td> <td>(0,1)</td> <td>(0,0)</td> </tr>
<tr> <td>(1,1)</td> <td>(1,0)</td> <td>(0,0)</td> </tr>
</table>

Our lookup table for the example will be this two dimensional PPM:

<table summary="2x2 lookup table">
<?makeman l l l. ?>
<tr> <td>red</td>   <td>yellow</td> </tr>
<tr> <td>green</td> <td>black</td> </tr>
</table>

This lookup table says Index (0,0) corresponds to the color red,
Index (0,1) corresponds to yellow, Index (1,0) corresponds to green,
and Index (1,1) corresponds to black.  The output of <b>pamlookup</b>
is the following PPM image:

<table summary="output image">
<?makeman l l l. ?>
<tr> <td>red</td>   <td>yellow</td> <td>red</td> </tr>
<tr> <td>black</td> <td>green</td>  <td>red</td> </tr>
</table>

<p>If an index specifies a row or column that exceeds the dimensions of
the lookup table image, <b>pamlookup</b> uses the value from the top left
corner of the lookup image, or the value you specify with the
<b>-missingcolor</b> option.

<p>The <i>indexfile</i> argument identifies the file containing the index
PAM or PNM image.  <b>-</b> means Standard Input.  The mandatory
<b>-lookupfile</b> option identifies the file containing the lookup table
image.  Again, <b>-</b> means Standard Input.  It won't work if both the
index image file and lookup table file are Standard Input.  The output image
goes to Standard Output.

<p>You can use <b>ppmmake</b> and <b>pnmcat</b> to create a lookup table file.

<p>If you want to use two separate 1-plane images as indices (so that your
output reflects the combination of both inputs), use <b>pamstack</b> to combine
the two into one two-plane image (and use a 2-dimensional lookup table image).


<A NAME="options">&nbsp;</A>
<H2>OPTIONS</H2>

<DL COMPACT>
<DT><B>-lookupfile=</B><i>lookupfile</i>

<DD><i>lookupfile</i> names the file that contains the PAM or PNM
image that is the lookup table.  This option is mandatory.

<DT><B>-missingcolor=</B><i>color</i>

<DD>This option is meaningful only if the lookup image (and therefore the 
output) is a PNM image.  <i>color</i> specifies the color that 
is to go in the output wherever the index from the input is not present
in the lookup table (not present means the index exceeds the dimensions
of the lookup image -- e.g. index is 100 but the lookup image is a 50 x 1
PPM).

<p>If you don't specify this option of <b>-fit</b>, <b>pamlookup</b>
uses the value from the top left corner of the lookup image whenever
an index exceeds the dimensions of the lookup image.

<P>Specify the color (<i>color</i>) as described for the <a
href="libppm.html#colorname">argument of the <b>ppm_parsecolor()</b>
library routine</a>.

<P>Another way to deal with a too-small lookup image is to use the 
<b>-fit</b> option.

<DT><B>-fit</B>

<DD>This option says to shrink or expand the lookup image as necessary
to fit the indices present in the index image, per the index image's
maxval.  For example, if your index image has a single plane and a
maxval of 255 and your lookup image is 1 row of 10 columns,
<b>pamlookup</b> stretches your lookup image to 255 columns before
doing the lookups.  <b>pamlookup</b> does the stretching (or
shrinking) with the <a href="pamscale.html"><b>pamscale</b></a>
program.

<p>When you use <b>-fit</b>, <b>pamlookup</b> never fails or warns you
due to invalid lookup image dimensions, and the <b>-missingcolor</b>
option has no effect.

</DL>

<A NAME="examples">&nbsp;</a>
<H2>EXAMPLES</H2>

<h3>Example: rainfall map</h3>

<p>Say you have a set of rainfall data in a single plane PAM image.
The rows and columns of the PAM indicate lattitude and longitude.  The
sample values are the annual rainfall in (whole) centimeters.  The highest
rainfall value in the image is 199 centimeters.  The image is in the file
rainfall.pam.

<p>You want to produce a PPM rainfall map with green for the wettest places,
red for the driest, and other colors in between.

<p>First, compose a lookup table image, probably with a graphical editor
and the image blown way up so you can work with individual pixels.  The
image must have a single row and 200 columns.  Make the leftmost pixel 
red and the rightmost pixel green and choose appropriate colors in between.
Call it colorkey.ppm.

<pre>
<kbd>
    pamlookup rainfall.ppm -lookupfile=colorkey.ppm &gt;rainfallmap.ppm
</kbd>
</pre>

<p>Now lets say you're too lazy to type in 200 color values and nobody really
cares about the places that have more than 99 centimeters of annual 
rainfall.  In that case, just make colorkey.ppm 100 columns wide and do
this:

<pre>
<kbd>
    pamlookup rainfall.ppm -lookupfile=colorkey.ppm -missingcolor=black \
       &gt;rainfallmap.ppm
</kbd>
</pre>

Now if there are areas that get more than 100 centimeters of rainfall, they
will just show up black in the output.

<h3>Example: graphical diff</h3>
<P>
Say you want to compare two PBM (black and white) images visually.  Each
consists of black foreground pixels on a white background.  You want to
create an image that contains background where both images contain background
and foreground where both images contain foreground.  But where Image 1
has a foreground pixel and Image 2 does not, you want red in the output;
where Image 2 has a foreground pixel and Image 1 does not, you want green.

<p>First, we create a single image that contains the information from both
input PBMs:

<pre>
<kbd>
    pamstack image1.pbm image2.pbm &gt;bothimages.pam
</kbd>
</pre>

Note that this image has 1 of 4 possible tuple values at each location:
(0,0), (0,1), (1,0), or (1,1).

<p>
Now, we create a lookup table that we can index with those 4 values:

<pre>
<kbd>
    ppmmake white 1 1 &gt;white.ppm
    ppmmake black 1 1 &gt;black.ppm
    ppmmake red   1 1 &gt;red.ppm
    ppmmake green 1 1 &gt;green.ppm
    pnmcat -leftright black.ppm red.ppm   &gt;blackred.ppm
    pnmcat -leftright green.ppm white.ppm &gt;greenwhite.ppm
    pnmcat -topbottom blackred.ppm greenwhite.ppm &gt;lookup.ppm
</kbd>
</pre>

<p>Finally, we look up the indices from our index in our lookup table and
produce the output:

<pre>
<kbd>
    pamlookup bothimages.ppm -lookupfile=lookup.ppm &gt;imagediff.ppm
</kbd>
</pre>

     
<A NAME="lbAE">&nbsp;</A>
<H2>SEE ALSO</H2>

<A HREF="pnmremap.html">pnmremap</A>,
<A HREF="ppmmake.html">ppmmake</A>,
<A HREF="pnmcat.html">pnmcat</A>,
<A HREF="pamstack.html">pamstack</A>,
<A HREF="pnm.html">pnm</A>,
<A HREF="pam.html">pam</A>


<A NAME="history"></A>
<H2>HISTORY</h2>

<p><b>pamlookup</b> was new in Netpbm 10.13 (December 2002).

<HR>
<A NAME="index">&nbsp;</A>
<H2>Table Of Contents</H2>
<UL COMPACT>
<LI><A HREF="#lbAB">NAME</A>
<LI><A HREF="#lbAC">SYNOPSIS</A>
<LI><A HREF="#lbAD">DESCRIPTION</A>
<LI><A HREF="#options">OPTIONS</A>
<LI><A HREF="#examples">EXAMPLES</A>
<LI><A HREF="#history">HISTORY</A>
<LI><A HREF="#lbAE">SEE ALSO</A>
</UL>
</BODY>
</HTML>