Real projective coordinates on data set of image patches

In this example, we explore the topology of a collection of image patches capturing line segments, which, as we will show using persistent cohomology and projective coordinates, are parametrized by the projective plane \(RP^2\). Each image patch is a square \(d \times d\) region of pixels. Each pixel can be thought of as a dimension, so each patch lives in \(\mathbb{R}^{d \times d}\), and a collection of patches can be thought of as a Euclidean point cloud in \(\mathbb{R}^{d \times d}\).

[7]:
import matplotlib.pyplot as plt

from ripser import ripser
from persim import plot_diagrams
from dreimac import ProjectiveCoords, GeometryUtils, GeometryExamples, PlotUtils, ProjectiveMapUtils

We now examine the collection of patches which hold oriented, slightly blurry line segments at varying distances from the center of the patch. We start by considering a small sample of these patches. Below, the “dim” variable sets the patch resolution, and the “sigma” variable sets the blurriness (a larger sigma means blurrier line segments).

[8]:
small_sample = GeometryExamples.line_patches(dim=10, n_angles=16, n_offsets=16, sigma=0.25)

plt.figure(figsize=(8, 8))
PlotUtils.plot_patches(small_sample, zoom=2)
plt.gca().set_facecolor((0.7, 0.7, 0.7))
../_images/notebooks_ImagePatches_3_0.png

Now let’s compute persistence diagrams for this collection of patches with both \(\mathbb{Z}/2\) coefficients and \(\mathbb{Z}/3\) coefficients up to \(H_2\).

[9]:
plt.figure(figsize=(8, 4))
for i,prime in enumerate([2,3]):
    pd = ripser(small_sample, coeff=prime, maxdim=2)['dgms']
    plt.subplot(1,2,i+1) ; plot_diagrams(pd) ; _ = plt.title("$\mathbb{Z}/" + str(prime) + "$")
../_images/notebooks_ImagePatches_5_0.png

There are two high-persistence classes in the persistence diagram with \(\mathbb{Z}/2\mathbb{Z}\) coefficients that do not show up in the persistence diagram with \(\mathbb{Z} / 3\mathbb{Z}\) coefficients. This is the signature of the projective plane \(RP^2\). To verify this, we will map these patches to \(RP^2\) using real projective coordinates.

[10]:
X = GeometryExamples.line_patches(dim=10, n_angles=75, n_offsets=75, sigma=0.25)
dist_mat, pointcloud_permutation = GeometryUtils.landmark_geodesic_distance(X, 300, 20)
[11]:
pc = ProjectiveCoords(dist_mat, n_landmarks=300, distance_matrix=True)
proj_coords = pc.get_coordinates(proj_dim=2, perc=0.8, cocycle_idx=0)
[12]:
subsample = GeometryUtils.get_greedy_perm_pc(proj_coords, 300)['perm']
stereo_projection_dim_red_subsample = ProjectiveMapUtils.get_stereo_proj_codim1(proj_coords[subsample, :])

plt.figure(figsize=(8, 8))
PlotUtils.imscatter(stereo_projection_dim_red_subsample, X[pointcloud_permutation][subsample], 10)
_ = PlotUtils.plot_proj_boundary()
../_images/notebooks_ImagePatches_9_0.png