Some of the IPython notebooks I've worked on over the years
Solving two problems related to computer vision: one is how to subdivide projected rectangle equally (e.g. given the four edges of a row of parking spots, and the number of spots, how to determine where the lines between them are on a picture taken at an angle). The other is calculating the area of the intersection between two polygons.
Solving a BVP (boundary value problem) via the shooting method in order to estimate water transport in dessicated (extremely dry) soil
An implementation of the Histogram of Oriented Gradients method of feature extraction for a computer vision project. Here is an article with more info: https://learnopencv.com/histogram-of-oriented-gradients/; and here is the original paper outlining the method: https://ieeexplore.ieee.org/abstract/document/1467360
A quick study comparing the efficacy of two different methods for solving 2-dimensional linear regression (these being gradient descent and SVD)
An exploratory analysis of a dataset of pap smears, used to eventually develop a visual k-means classifier which tells potentially cancerous cells from healthy ones
The aforementioned classifier that was eventually developed.