pnmmargin, pnmmontage, pnmnlfilt, pnmnorm, pnmpad, pnmpaste: add pages (#12187)

* pnmmargin, pnmmontage, pnmnlfilt, pnmnorm, pnmpad, pnmpaste: add pages

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
This commit is contained in:
Juri Dispan
2024-02-09 14:53:54 +01:00
committed by GitHub
parent 2df868402a
commit 95e6753d3e
6 changed files with 106 additions and 0 deletions

16
pages/common/pnmnlfilt.md Normal file
View File

@@ -0,0 +1,16 @@
# pnmnlfilt
> Apply a non-linear filter onto a PNM image.
> More information: <https://netpbm.sourceforge.net/doc/pnmnlfilt.html>.
- Apply the "alpha trimmed mean" filter with the specified alpha and radius values onto the PNM image:
`pnmnlfilt {{0.0..0.5}} {{radius}} {{path/to/image.pnm}} > {{path/to/output.pnm}}`
- Apply the "optimal estimation smoothing" filter with the specified noise threshold and radius onto the PNM image:
`pnmnlfilt {{1.0..2.0}} {{radius}} {{path/to/image.pnm}} > {{path/to/output.pnm}}`
- Apply the "edge enhancement" filter with the specified alpha and radius onto the PNM image:
`pnmnlfilt {{-0.9..(-0.1)}} {{radius}} {{path/to/image.pnm}} > {{path/to/output.pnm}}`