0
9.8kviews
Differentiate between point operations and neighboring operations
1 Answer
1
214views
  1. Transformation function:

    In point operation, transformation function T(.) works only on single input pixel value say r In Neighbouring operation, Transformation function works on group of input values. It is a group operation. Number of input values selected for processing depends on window size.

  2. Memory requirement:

    Point operation is azero memory operation . Output pixel value at (x,y) position depends on a single input at (x,y) position. NO memory space is required to store intermediate results. In Neighborhood operation output pixel value at (x,y) position depends on many more input pixel value memory space is required to store intermediat results. In Neighborhood operation output pixel value at (x,y) position depends on many more input pixel value, therefore to calculate single output pixel value memory space is required to store the intermediate results.

  3. Examples of Operations:

    Examples of point operation include:

    1. Contrast Stretching Transformation
    2. Clipping and Thresholding
    3. Digital Negative
    4. LOG Transformation
    5. Power Law Transformation
    6. Intensity Level Slicing
    7. Bit Level Slicing

    Examples of Neighboring Operation is Spatial filtering.

    1. Smoothing Spatial Filters: LPF, Weighted Average filter, Trimmed Average Filter, Median, Max, Min filters.

    2. Sharpening Filters: Derivative filters, HPF, High Boost Filters

  4. Output Pixel Value

    In point operation, the output pixel value s at (x,y) position is given by s=T(r) Where r is input pixel value at (x,y) position

    In neighborhood operations , the ouput pixel value at (x,y) position is obtained by masking operation

    Eg: consider 3x3 mask w and digital sub-image F,

    W=

    W1 W2 W3
    W4 W5 W6
    W7 W8 W9

    F=

    Z1 Z2 Z3
    Z4 Z5 Z6
    Z7 Z8 Z9

    The response of filter mask at the centre position in the output image is given by,

    S=z1w1+z2w2+z3w3+z4w4+z5w5+z6w6+z7w7+z8w8+z9w9

Please log in to add an answer.