summary refs log tree commit diff
path: root/pgmkernel.html
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-12-20 00:58:34 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-12-20 00:58:34 +0000
commit5de63a9b33d31e087b6e3cde9e30a6863d9735d1 (patch)
treedf5f5cc0b0f521b8491008672f8373a1c0a2b52d /pgmkernel.html
parentc63cb84b8c337b6464ef50d1334968e346c8d31a (diff)
downloadnetpbm-mirror-5de63a9b33d31e087b6e3cde9e30a6863d9735d1.tar.gz
netpbm-mirror-5de63a9b33d31e087b6e3cde9e30a6863d9735d1.tar.xz
netpbm-mirror-5de63a9b33d31e087b6e3cde9e30a6863d9735d1.zip
miscellaneous update
git-svn-id: http://svn.code.sf.net/p/netpbm/code/userguide@2071 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'pgmkernel.html')
-rw-r--r--pgmkernel.html32
1 files changed, 27 insertions, 5 deletions
diff --git a/pgmkernel.html b/pgmkernel.html
index a0bdaaae..763466b1 100644
--- a/pgmkernel.html
+++ b/pgmkernel.html
@@ -13,10 +13,14 @@ pgmkernel - generate a convolution kernel
 <H2 id="synopsis">SYNOPSIS</H2>
 
 <p>
-<B>pgmkernel</B> [<B>-weight</B> <I>number</I>] <I>size</I>
+<B>pgmkernel</B>
+[<B>-weight=</B><I>number</I>]
+[<b>-maxval=</b>] {<I>size</I> | <i>width</i> <i>height</i>}
+
+<P>Minimum unique abbreviation of option is acceptable.  You may use double
+hyphens instead of single hyphen to denote options.  You may use white
+space in place of the equals sign to separate an option name from its value.
 
-<p>
-<B>pgmkernel</B> [<B>-weight</B> <I>number</I>] <I>width</I> <I>height</I>
 
 <H2 id="description">DESCRIPTION</H2>
 
@@ -44,10 +48,28 @@ everywhere beyond the specified kernel width and height.
 the protocol <b>pnmconvol</b> specifies for representing the real numbers K
 in PGM.
 
+
 <H2 id="options">OPTIONS</H2>
 
-The optional <b>-weight</b> value must be a positive real number.  The default
-value is 6.0.
+<dl>
+<dt><b>-weight=</b><i>number</i>
+<dd>The distance from the center is weighted by this; a higher number means
+the value falls off more quickly as you go away from the center.
+<p>
+This must be a positive real number.
+<p>
+The default is 6.0.
+
+<dt><b>-maxval=</b><i>maxval</i>
+
+<dd>The maxval for the PGM kernel.
+<p>Default is 255.
+
+<p>This option was new in Netpbm 10.65 (December 2013).  Before that, the
+maxval is always 255.
+    
+
+</dl>
 
 <h2 id="limitations">LIMITATIONS</H2>