See Also: FAV, FED, FME, FGA, FMO, FPR, FAD, FLE, FPRE, FSHARP
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 MASK Area Mask (Window or Bitmap) 0-4 Int FACTOR Gain Factor 0-1 Real
EASI>FILE="filespec"
EASI>DBIC=i
EASI>DBOC=j
EASI>MASK=xoff,yoff,xsize,ysize | process window
EASI>MASK=b | process only under bitmap
| stored in segment b
EASI>MASK= | process entire channel
Valid Values: x >= 0.00001 Default: 1.0Specifies the gain factor to be applied to the filtered input channel.
EASI>FACTOR = 1.5 EASI>FACTOR = | defaults to 1.0NOTE: Values of 0.0 or negative real numbers are not allowed.
There are five parameters in this program. FILE specifies the input PCI database file. Input channel (DBIC) can be the same as the output channel (DBOC). The user has the option of applying a gain factor (FACTOR) to each filtered input channel before averaging. A FACTOR of 1.0 (default) implies no gain.
The MASK parameter specifies the area within the input channel which will be processed. Only the 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 defines the area to be filtered. When four values are specified, these values define the x,y offsets and x,y dimensions of the rectangular window within the image to be filtered. If MASK is defaulted, the entire database is processed.
EASI>MONITOR="ON" | turn monitor ON (default)
EASI>MONITOR="OFF" | turn monitor OFF (recommended if
| running in batch/background mode)
-1 0 1 1 2 1
-2 0 2 0 0 0
-1 0 1 -1 -2 -1
X Y
Consider the following 3X3 image window
+---------+
| a1 a2 a3|
| a4 a5 a6| <--- Filter window 3 X 3
| a7 a8 a9|
+---------+
where:
a1 .. a8 are the grey levels of each pixel in the filter window
X = -1*a1 + 1*a3 - 2*a4 + 2*a6 - 1*a7 + 1*a9
Y = 1*a1 + 2*a2 + 1*a3 - 1*a7 - 2*a8 - 1*a9
Sobel gradient = SQRT (X*X + Y*Y)
All pixels are filtered. In order to filter pixels located near the
edges of an image, edge pixels values are replicated to give
sufficient data.
EASI>FILE = "irvine.pix" EASI>DBIC = 1 EASI>DBOC = 8 | Working area EASI>MASK = 11 | Bitmap 11 EASI>FACTOR = 1 EASI>RUN FSOBEL