See Also: FAV, FED, FME, FGA, FMO, FPR, FAD, FLE, FSOBEL, FPRE
Name Prompt Count Type FILE Database File Name 1-64 Char DBIC Database Input Channel List 1 Int DBOC Database Output Channel List 1 Int FLSZ Filter Size: Pixels, Lines 1-2 Int MASK Area Mask (Window or Bitmap) 0-4 Int
EASI>FILE="filespec"
EASI>DBIC=i
EASI>DBOC=j
EASI>FLSZ=i,j
EASI> MASK = | process entire channel
EASI> MASK = xoff,yoff,xsize,ysize | process window
EASI> MASK = b | process only under bitmap
| stored in segment b
There are five parameters in this program. FILE specifies the input PCI database file. The dimensions of the filter window (FLSZ) must be odd. The minimum filter size is 1 by 3, and the maximum filter size allowed is 33 by 33. The filter window does not need to be square. The input channel (DBIC) can be the same as output channel (DBOC). For 8-bit channels, if the result is less than 0, it will be truncated to 0. If the result is more than 255, it will be truncated to 255.
The MASK parameter specifies the area within the input channel which will be processed. Only area under mask will be filtered and the rest of the image will be unchanged. If a single value is specified, then this value points to a bitmap segment, which define the area to be filtered. When four values are specified, these values define the x,y offsets and x,y dimensions of rectangular window within the image to be filtered. If defaulted, then entire database is processed.
EASI>MONITOR="ON" | turn monitor ON (default)
EASI>MONITOR="OFF" | turn monitor OFF (recommended if
| running in batch/background mode)
EASI>FILE = "IRVINE.PIX" EASI>DBIC = 4 | Channel to be filtered EASI>DBOC = 8 | Filtered results EASI>FLSZ = | Default 3x3 filter size. EASI>MASK = 11 | Indicate area to filter. EASI>RUN FSHARPThe 16-bit elevation data stored on channel 10 on database IRVINE.PIX is to be sharpened using a 5X5 square filter. The filtered result is to overwrite the original input data.
EASI>FILE = "IRVINE.PIX" EASI>DBIC = 10 | Input Elevation data EASI>DBOC = 10 | Input data to be overwritten EASI>FLSZ = 5,5 | 5x5 filter size. EASI>MASK = | Entire database to be filtered EASI>RUN FSHARP