The project is for class CMSC426 Computer Vision.
Assignment Due Date: Feb 20, 2023
Assignment Score: 50 out of 50
The language used: Jupyter Notebook
Assignment Purpose: This assignment aims to explore image processing techniques, specifically hybrid images, and pyramids.
Some Processing Outcomes:
Functions implemented:
- Part 1: Hybrid Image
def read_image(image_path)
def gaussian_2D_filter(size, cutoff_frequency)
def imgfilter(image, filter)
def log_mag_FFT(image)
- Part 2: Pyramid Image
def pyramidsGL(image, num_levels)
def displayPyramids(G, L)
def reconstructLaplacianPyramid(L, smallest_g)