Technical Blog


Detecting COVID on xRays with CNN
Deep Learning, Computer Vision, CNN, PyTorch Aug 12, 2023

Detecting COVID19 on XRay Images with CNN

In this note, I explore the use of Convolutional Neural Networks (CNNs) to develop a classification model capable of predicting COVID-19 cases based on x-ray images.

Original and Pencil Sketch Images
Tutorial, Python, GaussianBlur, OpenCV Mar 21, 2023

Pencil Sketch Image Conversion

Social Media apps like Instagram and Snapchat offer a number of filters to create realistic effects on video and image content. Here is a pencil sketch implementation.

Bayesian Forecasting with PyBATS
Bayesian Forecasting, Python, PyBATS Mar 26, 2022

Bayesian Time Series Forecasting with PyBats

Bayesian forecasting methods are an effective alternative to traditional frequentist forecasting methods, such as ARIMA methods, as they offer more transparent parameter estimation and robust models.

tangerine-with-space-background.png
Masking, Image Processing, OpenCV Feb 07, 2022

Masking Images with OpenCV

Masking is a technique used in computer vision that can achieve results similar to chroma keying also known as green screen background replacement in video and filmmaking.

Adaptive Histogram Equalization
Image Processing, CLAHE, OpenCV Nov 12, 2021

Image Processing: Adaptive Histogram Equalization

Histogram equalization uses all pixel values to improve the contrast of an image. While it can improve contrast through intensity distribution, it can sometimes fail, leading to overly bright images.

Histogram Equalization Demonstration
Computer Vision, OpenCV, Image Processing Aug 13, 2021

Image Processing: Histogram Equalization

Histogram Equalization is the process of normalizing the intensity of the individual pixel against its respective probability (the likelihood of that pixel intensity value in the image).

Kernel Convolution
Kernel Convolution, OpenCV May 17, 2021

Kernel Convolution with OpenCV

In the previous note, we discussed the theoretical implementations of Kernel Convolutions. This short note demonstrates kernel convolutions with OpenCV.

Kernel Convolution, OpenCV Mar 14, 2021

Kernel Convolution

The foundation concept for processing, manipulating, and transforming images is a Kernel and the use of kernels in the convolution process.

Closed-Form Solution vs. Gradient Descent Visualization
ML, Optimization, Gradient Descent Oct 22, 2018

Gradient Descent

While closed-form solutions for computing coefficients are neat, inverting a matrix is computationally prohibitive, therefore, gradient descent is a computationally feasible implementation.