Digital Image Processing

1. DFT:
(15 Pts.) Write code for computing the forward Fourier transform, inverse Fourier transform, and magnitude of the Fourier transform.
The input to your program is a 2D matrix of size 15X15.

– Starter code available in directory frequency_filtering/
– dft/Dft.py: Edit the functions “forward_transform”, “inverse_transform”, and “magnitude”, you are welcome to add more functions.
– For this part of the assignment, please implement your own code for all computations, do not use inbuilt functions – like “fft”, “dft”, “abs” from numpy, opencv or other libraries – that directly accomplish the objective of the question. You can use functions such as “sin” and “cos” from the math package as needed.
– This part of the assignment can be run using dip_hw3_part_1.py (Do Not modify this file)
– Usage:

python dip_hw3_part_1.py
– Please make sure your code runs when you run the above command from prompt/terminal
– Do not save any output in your code. Any output images or files will be saved to “output/” folder (dip_hw3_part_1.py automatically does this)

————-
2. Linear Filtering:
(30 Pts.) Write code to perform spatial filtering on an image using 5X5 Gaussian filter and a 3X3 Laplacian filter.

– Starter code available in directory spatial_filtering/
– spatial_filtering/filtering.py:
– \__init__(): Will initialize the required variable for filtering (image). DO NOT edit this function.
– get_gaussian_filter(): Write your code to compute a 5X5 Gaussian filtering here.
– get_laplacian_filter(): Wring your code to initialize a 3X3 Laplacian filtering here.
– filter(): Wring your code to perform filtering operation on the input image using the specified filter.
– For this part of the assignment, please implement your own code for all computations, do not use inbuilt functions from numpy, opencv or other libraries that directly accomplish the objective of the question. You can use functions from math package if needed.
– This part of the assignment can be run using dip_hw3_part_2.py (Do Not modify this file)
– Usage:

python dip_hw3_part_2.py
– Please make sure your code runs when you run the above command from prompt/terminal
– Do not save any output in your code. Any output images or files will be saved to “output/” folder (dip_hw3_part_2.py automatically does this)

————-
3. Frequency Filtering:
(30 Pts.) Write code to perform image filtering in the frequency domain. The input image is corrupted with periodic noise.
To perform filtering:
1. Compute the DFT of the image.
2. Inspect the DFT to identify the noise frequencies.
3. Create a filter using trial and error to reject the noise frequencies.
4. Compute the inverse DFT of the filtered frequencies to obtain the filtered image.

The input to your program is an image with periodic noise.

– Starter code available in directory frequency_filtering/
– frequency_filtering/filtering.py:
– \__init__(): Will initialize the required variable for filtering (image). An addsinNoise function will be called to add sine noise to a given image. DO NOT edit this function.
– get_mask: Write your code to generate the masks to reject noise frequencies.
– filter(): Write your code to perform image filtering here. The required variables have been initialized and can be used as self.image, self.mask.
– The function returns three images, filtered image, magnitude of the DFT, and magnitude of filtered dft
– Perform necessary post-processing to make the images visible. (Log compression, full contrast stretch, etc.)
– post_process_image(): Write your code to perform post-processing here.
– For this part of the assignment, You can use **inbuilt functions to compute the Fourier transform**.
– For example, **you are welcome to use fft and dft libraries that are available in numpy and opencv**
– This part of the assignment can be run using dip_hw3_part_3.py (Do Not modify this file)
– Usage:

python dip_hw3_part_3.py
– Please make sure your code runs when you run the above command from prompt/terminal
– Do not save any output in your code. Any output images or files will be saved to “output/” folder (dip_hw3_filter.py automatically does this)

Leave a Reply

Your email address will not be published. Required fields are marked *