File: judge.1

package info (click to toggle)
jpegjudge 0.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 308 kB
  • ctags: 69
  • sloc: ansic: 536; sh: 500; makefile: 40
file content (47 lines) | stat: -rw-r--r-- 1,172 bytes parent folder | download | duplicates (5)
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
.TH JPEGJUDGE 1 "Jpegjudge - guess jpeg picture quality"
.SH NAME
.I jpegjudge
\- guess jpeg picture quality
.SH SYNOPSIS
.B jpegjudge
[
.B \-V
]
.P
.B jpegjudge
[
.B \-b
]
file ...
.SH DESCRIPTION
.I Jpegjudge
reads each argument and attempts to guess the quality with which
it was saved. Currently, only a rough indicator is calculcated,
ranging from 0 (lowest quality) to 1000 (highest quality), an
extension to other formats would be straightforward, but isn't planned.
.PP
It can read all pictures the
.B IJG jpeg library
can read, i.e. normal and progressive jpeg's.
.SS OPTIONS
.TP
.B -b
Display only quality indicator, suppress other information (filenames).
.TP
.B \-h, \-\-help
Display short summary of options.
.TP
.B \-V, \-\-version
Display version number and exit.
.SH BUGS
It should be possible to judge pictures stored in non-lossy formats, too,
since conversion to jpeg may influence the measurement.
.PP
The quality indicator is non-linear, and could be much better.
.PP
The algorithm to calculate the quality was made up in 10 minutes, after
staring at various histograms.
.SH ACKNOWLEDGEMENTS
This program contains code from the
.B IJG jpeg software.