Forms a figure on which to plot images.
(nx, ny)
| 19 | |
| 20 | |
| 21 | def form_figure(nx, ny) -> tuple[plt.Figure, plt.Axes]: |
| 22 | """Forms a figure on which to plot images.""" |
| 23 | fig, ax = plt.subplots(frameon=False) |
| 24 | ax.set_xlim(0, nx) |
| 25 | ax.set_ylim(0, ny) |
| 26 | ax.axis("off") |
| 27 | ax.invert_yaxis() |
| 28 | fig.tight_layout() |
| 29 | return fig, ax |
| 30 | |
| 31 | |
| 32 | def visualize_scoremaps( |
no outgoing calls
no test coverage detected