0
4.7kviews
Apply the following Image Enhancement techniques for the given 3-bits per pixels image segment.

Apply the following Image Enhancement techniques for the given 3-bits per pixels image segment.

enter image description here

  • Digital Negative
  • Bit plane slicing
  • Thresholding with T=5
  • Intensity slicing with background

    a =2 & b =5

1 Answer
0
163views

Given, 3-bit image

∴L=2^3=8

∴Gray scale = [0, L-1] = [0, 7]

a. Digital negative

s = (L – 1) – r where s $\rightarrow$ o/p gray level

s = 7 – r r $\rightarrow$ i/p gray level

enter image description here

b. Bit plane slicing Converting the decimal values into their equivalent binary.

enter image description here

MSB plane $\hspace{40mm} $ Centre bit plane $\hspace{40mm} $ LSB plane

c. Thresholding T = 5 The formula for achieving thresholding is as follows.

Where L is the number of grey levels.

s = 0; if r ≤ 5

s = 7; if r >5

enter image description here

d. Intensity slicing with background

a = 2 & b = 5

This can be implemented using the formulation

$s = L - 1;if a ≤ r ≥ b$

$s = r; otherwise$

s = 7; if 2 ≤ r ≥ 5

s = r; otherwise

enter image description here

Please log in to add an answer.