The project is for class CMSC426 Computer Vision.
Assignment Due Date: Mar 6, 2023
Assignment Score: 50 out of 50
The language used: Jupyter Notebook
Assignment Purpose: This assignment aims to implement a corner detector and feature tracker algorithm to track features from an image sequence called “hotel”. The goal is to learn and apply fundamental computer vision techniques for keypoint selection and feature tracking.
Some Processing Outcomes:
Functions implemented:
- Feature Tracker
def trackPoints(pt_x, pt_y, im, ws, out_of_bound)
def getKeypoints(img, tau)
def getNextPoints(x, y, im1, im2, ws, out_of_bound)