Skip to content
Snippets Groups Projects
Commit 65749319 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

feat(plot): add plot_overlay

parent c23088da
No related branches found
No related tags found
No related merge requests found
...@@ -3,10 +3,31 @@ ...@@ -3,10 +3,31 @@
Basic plotting functions for cell visualisation Basic plotting functions for cell visualisation
""" """
import typing as t
import numpy as np
from grid_strategy import strategies
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
def plot_overlay(bg, fg, alpha=0.5, ax=plt) -> None: def plot_overlay(
bg: np.ndarray, fg: np.ndarray, alpha: float = 0.5, ax=plt
) -> None:
ax.imshow(bg, cmap=plt.cm.gray, interpolation="none") ax.imshow(bg, cmap=plt.cm.gray, interpolation="none")
ax.imshow(fg, alpha=alpha, interpolation="none") ax.imshow(fg, alpha=alpha, interpolation="none")
ax.axis("off") ax.axis("off")
def plot_overlay_in_square(data: t.Tuple[np.ndarray, np.ndarray]):
specs = strategies.SquareStrategy("center").get_grid(len(data))
for i, (gs, (tile, mask)) in enumerate(zip(specs, data)):
ax = plt.subplot(gs)
plot_overlay(tile, mask, ax=ax)
def plot_in_square(data: t.Iterable):
specs = strategies.SquareStrategy("center").get_grid(len(data))
for i, (gs, datum) in enumerate(zip(specs, data)):
ax = plt.subplot(gs)
ax.imshow(datum)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment