blob: 22244ad2ae31d052a09fd5b9afded558a6a57e47 (
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"
. ./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"
|