about summary refs log tree commit diff
path: root/test/pamarith.test
blob: 20c4039d68cf8d27e0f2cecfdb0cea98258d3637 (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
#! /bin/sh
# This script tests: pamarith
# Also requires: pamtopnm rgb3toppm pamenlarge pamcat pamseq pbmmake pgmmake
# Also requires: ppmpat pamchannel

tmpdir=${tmpdir:-/tmp}
input1_pgm=${tmpdir}/input1.pgm
input2_pgm=${tmpdir}/input2.pgm
output_pgm=${tmpdir}/output.pgm
input1_ppm=${tmpdir}/input1.ppm
input2_ppm=${tmpdir}/input2.ppm

echo "Test 1"

pamseq 1 15 | pamtopnm -assume > ${input1_pgm}
pgmmake -maxval 15 0.15 16 1 > ${input2_pgm}

rgb3toppm ${input1_pgm} ${input1_pgm} ${input1_pgm} > ${input1_ppm}
rgb3toppm ${input2_pgm} ${input2_pgm} ${input2_pgm} > ${input2_ppm}

pamcat -tb ${input1_pgm} ${input2_pgm} -plain

for fn in "-add" "-subtract" "-multiply" "-divide" "-difference" \
    "-minimum" "-maximum" "-mean" "-compare" "-equal" \
    "-and" "-or" "-nand" "-nor"  "-xor" \
    "-shiftleft" "-shiftright"
  do
  echo ${fn}
  pamarith ${fn} -plain ${input1_pgm} ${input2_pgm} | tr '\n' ' '; echo
  pamarith ${fn} ${input1_pgm} ${input2_pgm} > ${output_pgm}
  rgb3toppm  ${output_pgm} ${output_pgm} ${output_pgm} | cksum
  pamarith ${fn} ${input1_ppm} ${input2_pgm} | cksum
  pamarith ${fn} ${input1_ppm} ${input2_ppm} | cksum
  done

rm ${input1_pgm} ${input2_pgm} ${output_pgm} ${input2_ppm}

input1_pbm=${tmpdir}/input1.pbm
input2_pbm=${tmpdir}/input2.pbm

echo "Test 2 PBM"

pbmmake -g 8 1 > ${input1_pbm}
pbmmake -g 2 1 | pamenlarge -xscale=4 > ${input2_pbm}

pamcat -tb -plain ${input1_pbm} ${input2_pbm}

for fn in "-add" "-subtract" "-multiply" "-divide" "-difference" \
    "-minimum" "-maximum" "-mean" "-compare" "-equal" \
    "-and" "-or" "-nand" "-nor"  "-xor" \
    "-shiftleft" "-shiftright"
  do
  echo ${fn}
  pamarith ${fn} -plain ${input1_pbm} ${input2_pbm} | tr '\n' ' '; echo
  done

rm ${input1_pbm} ${input2_pbm}

echo "Test 3"

input3_ppm=${tmpdir}/input3.ppm
input4_ppm=${tmpdir}/input4.ppm
input4_pgm=${tmpdir}/input4.pgm

ppmpat -tartan  -color=rgb:f0/f0/00,rgb:80/00/80,rgb:0f/00/0f 20 15 \
  > ${input3_ppm}
ppmpat -argyle2 -color=rgb:01/01/01,rgb:02/02/02,rgb:05/05/05 20 15 \
  > ${input4_ppm}
pamchannel -infile ${input4_ppm} 0 > ${input4_pgm}

for fn in "-add" "-multiply" "-difference" \
    "-minimum" "-maximum" "-mean" "-equal" \
    "-and" "-or" "-nand" "-nor" "-xor"
  do
  echo ${fn}
  pamarith ${fn} ${input3_ppm} ${input4_ppm} | cksum
  pamarith ${fn} ${input4_ppm} ${input3_ppm} | cksum
  pamarith ${fn} ${input3_ppm} ${input4_pgm} | pamtopnm | cksum
  done

for fn in "-subtract" "-divide" "-compare" "-shiftleft" "-shiftright"
  do
  echo ${fn}
  pamarith ${fn} ${input3_ppm} ${input4_ppm} | cksum
  pamarith ${fn} ${input3_ppm} ${input4_pgm} | pamtopnm | cksum
  done

rm ${input3_ppm} ${input4_ppm} ${input4_pgm}

echo "Test 4 (input = output)"
echo "Prints 281226646 481 six times, then 2921940274 59 six times"

for image in maze.pbm ${input1_ppm}
  do
  echo "input image"
  cat ${image} | cksum
  for fn in "-minimum" "-maximum" "-mean" "-and" "-or"
    do
    echo ${fn}
    pamarith ${fn} ${image} ${image} | cksum
    done
  done


echo "Test 5 (blank output)"
echo "Prints 2247801875 481 three times, then 320101399 59 three times"

for image in maze.pbm ${input1_ppm}
  do
  for fn in "-subtract" "-difference" "-xor"
    do
    echo ${fn}
    pamarith ${fn} ${image} ${image} | cksum
    done
  done

rm ${input1_ppm}

echo "Test Invalid"

. ${srcdir}/test-invalid.inc

# multiple functions

invCmd "pamarith -add -subtract testimg.ppm testimg.ppm"
invCmd "pamarith -multiply -divide testimg.ppm testimg.ppm"
invCmd "pamarith -difference -minimum testimg.ppm testimg.ppm"
invCmd "pamarith -maximum -mean testimg.ppm testimg.ppm"
invCmd "pamarith -compare -and testimg.ppm testimg.ppm"
invCmd "pamarith -compare -equal testimg.ppm testimg.ppm"
invCmd "pamarith -or -nand testimg.ppm testimg.ppm"
invCmd "pamarith -nor -xor testimg.ppm testimg.ppm"
invCmd "pamarith -shiftleft -shiftright testimg.ppm testimg.ppm"

# -add does not take a value

invCmd "pamarith -add=1 testimg.ppm testimg.ppm"

# No function

invCmd "pamarith -plain testimg.ppm testimg.ppm"
invCmd "pamarith testimg.ppm testimg.ppm"

# Just one input image file

invCmd "pamarith -add testimg.ppm"

# No input image file

invCmd "pamarith -add"

# Input images with different depth (number of planes)

input1_pam=${tmpdir}/input1.pam

pamchannel -infile testimg.ppm 0 1 > ${input1_pam}
invCmd "pamarith -add testimg.ppm ${input1_pam}"
rm ${input1_pam}

# Input images with different x/y dimensions

invCmd "pamarith -add testimg.ppm testgrid.pbm"

input1_pbm=${tmpdir}/input1.pbm
input2_pbm=${tmpdir}/input2.pbm

pamenlarge -xscale=2 testgrid.pbm > ${input1_pbm}
invCmd "pamarith -add testgrid.pbm ${input1_pbm}"
rm ${input1_pbm}

pamenlarge -yscale=3 testgrid.pbm > ${input2_pbm}
invCmd "pamarith -add testgrid.pbm ${input2_pbm}"
rm ${input2_pbm}

# Invalid usage of -closeness

invCmd "pamarith -equal -closeness=100.1 testgrid.pbm"
invCmd "pamarith -equal -closeness=-10 testgrid.pbm"
invCmd "pamarith -closeness -equal testgrid.pbm"
invCmd "pamarith -compare -closeness=10 testgrid.pbm"

# Bit string functions
# Create PGM test input

input3_pgm=${tmpdir}/input3.pgm
input4_pgm=${tmpdir}/input4.pgm
input5_pgm=${tmpdir}/input5.pgm

pgmmake -maxval=4095 1.0 3 1 > ${input3_pgm}
pgmmake -maxval=4096 1.0 3 1 > ${input4_pgm}
pgmmake -maxval=8191 1.0 3 1 > ${input5_pgm}

# Bit string functions - Maxval must match

invCmd "pamarith -and ${input3_pgm} ${input5_pgm}"
invCmd "pamarith -or ${input3_pgm} ${input5_pgm}"
invCmd "pamarith -nand ${input3_pgm} ${input5_pgm}"
invCmd "pamarith -nor ${input3_pgm} ${input5_pgm}"
invCmd "pamarith -xor ${input3_pgm} ${input5_pgm}"

# Bit string functions - Maxval must be 2^n -1

invCmd "pamarith -and ${input4_pgm} ${input4_pgm}"
invCmd "pamarith -or ${input4_pgm} ${input4_pgm}"
invCmd "pamarith -nand ${input4_pgm} ${input4_pgm}"
invCmd "pamarith -nor ${input4_pgm} ${input4_pgm}"
invCmd "pamarith -xor ${input4_pgm} ${input4_pgm}"
invCmd "pamarith -shiftleft ${input4_pgm} ${input4_pgm}"
invCmd "pamarith -shiftright ${input4_pgm} ${input4_pgm}"

rm ${input3_pgm} ${input4_pgm} ${input5_pgm}

# Functions that do not allow more than two input images.
# Only the functions that are commutative and associative allow
# three or more inputs.

invCmd "pamarith -subtract testimg.ppm testimg.ppm testimg.ppm"
invCmd "pamarith -divide testimg.ppm testimg.ppm testimg.ppm"
invCmd "pamarith -compare testimg.ppm testimg.ppm testimg.ppm"
invCmd "pamarith -difference testimg.ppm testimg.ppm testimg.ppm"
invCmd "pamarith -shiftleft testimg.ppm testimg.ppm testimg.ppm"
invCmd "pamarith -shiftright testimg.ppm testimg.ppm testimg.ppm"

# Currently -equal and -mean do not allow more than two input images.
# These two cases should be removed once improvements are made.

invCmd "pamarith -equal testgrid.pbm testgrid.pbm testgrid.pbm"
invCmd "pamarith -mean testgrid.pbm  testgrid.pbm testgrid.pbm"