(image, title, colorbar=False, show_plot=True, **kwargs)
| 9 | |
| 10 | |
| 11 | def visualize(image, title, colorbar=False, show_plot=True, **kwargs): |
| 12 | plt.title(title) |
| 13 | plt.imshow(image, **kwargs) |
| 14 | if colorbar: |
| 15 | plt.colorbar() |
| 16 | if show_plot: |
| 17 | plt.show() |
| 18 | |
| 19 | |
| 20 | def visualize_arrays( |
nothing calls this directly
no outgoing calls
no test coverage detected