about summary refs log tree commit diff
path: root/test/pgmhist.test
blob: 5c458a57d0bf32682146e70ec0b8721d075cbb5d (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
#! /bin/sh
# This script tests: pgmhist
# Also requires: pgmramp


# Ignore differences in spaces.

echo "Test 1"

pgmramp -maxval=8 -lr 8 2 | pgmhist | \
  sed -e 's/  */ /g' -e 's/ *$//'

pgmhist testgrid.pbm | \
  sed -e 's/  */ /g' -e 's/ *$//'

echo "Test 2"

pgmramp -lr 256 1 | pgmhist -machine -median   | \
  sed -e 's/  */ /g' -e 's/ *$//'

pgmramp -lr 256 1 | pgmhist -machine -quartile | \
  sed -e 's/  */ /g' -e 's/ *$//'

pgmramp -lr 256 1 | pgmhist -machine -decile   | \
  sed -e 's/  */ /g' -e 's/ *$//'

echo "Test Invalid"

. ${srcdir}/test-invalid.inc

invCmd "pgmhist -median   -quartile testgrid.pbm"
invCmd "pgmhist -median   -decile   testgrid.pbm"
invCmd "pgmhist -quartile -decile   testgrid.pbm"
invCmd "pgmhist testimg.ppm"