Tag Archives: diabetic retinopathy

Fundus Image Segmentation

Source Code¶On my GitHub This code is wrapped in a class which makes it harder to post to a Notebook (a few too many lines for a post). Segmenting Fundus Images with kNN¶After preprocessing the images as described in a previous post, I tried to extract learnable features by applying the k-nearest neighbors algorithm. In… Read More »

Color Transfer with OpenCV, Python

Color Transfer by Histogram Specification¶Auxilary functions (described in the previous post)¶ In [1]: %matplotlib inline from matplotlib import pyplot as plt from os import path import numpy as np import cv2 import pandas as pd # display a list of images with titles def show_images(images,titles=None, scale=1.3): """Display a list of images""" n_ims = len(images) if titles… Read More »