Use pixel graphs to find an object’s geodesic center#

In various image analysis situations, it is useful to think of the pixels of an image, or of a region of an image, as a network or graph, in which each pixel is connected to its neighbors (with or without diagonals). One such situation is finding the geodesic center of an object, which is the point closest to all other points if you are only allowed to travel on the pixels of the object, rather than in a straight line. This point is the one with maximal closeness centrality [1] in the network.

In this example, we create such a pixel graph of a skeleton and find the central pixel of that skeleton. This demonstrates its utility in contrast with the centroid (also known as the center of mass) which may actually fall outside the object.

References#

import matplotlib.pyplot as plt
import numpy as np
from scipy import ndimage as ndi
from skimage import color, data, filters, graph, measure, morphology

We start by loading the data: an image of a human retina.

Human retina

We convert the image to grayscale, then use the Sato vesselness filter to better distinguish the main vessels in the image.

retina = color.rgb2gray(retina_source)
t0, t1 = filters.threshold_multiotsu(retina, classes=3)
mask = retina > t0
vessels = filters.sato(retina, sigmas=range(1, 10)) * mask

_, axes = plt.subplots(nrows=1, ncols=2)
axes[0].imshow(retina, cmap='gray')
axes[0].set_axis_off()
axes[0].set_title('grayscale')
axes[1].imshow(vessels, cmap='magma')
axes[1].set_axis_off()
_ = axes[1].set_title('Sato vesselness')
grayscale, Sato vesselness

Based on the observed vesselness values, we use hysteresis thresholding to define the main vessels.

Thresholded vesselness

Finally, we can skeletonize this label image and use that as the basis to find the central pixel in that skeleton. Compare that to the position of the centroid!

Vessel graph center vs centroid

Total running time of the script: (1 minutes 0.848 seconds)

Gallery generated by Sphinx-Gallery