Parent Topic: Examples

Filtering

Perform a 3x3 smoothing filter on channel 4.

        %7 = (%4[-1,-1] + %4[ 0,-1] + %4[ 1,-1] + 
              %4[-1, 0] + %4[ 0, 0] + %4[ 1, 0] +
              %4[-1, 1] + %4[ 0, 1] + %4[ 1, 1] ) / 9;
PACE program FAV performs this operation more efficiently.


Parent Topic: Examples
About PCI Help Gateway