Exemplo n.º 1
0
    def test_plot_axis(self, cont: ImageContainer):
        cont.add_img(np.random.RandomState(42).normal(size=(*cont.shape, 3)),
                     layer="foo")
        fig, (ax1, ax2) = plt.subplots(ncols=2, dpi=DPI, tight_layout=True)

        cont.show("image", ax=ax1)
        cont.show("foo", ax=ax2)
Exemplo n.º 2
0
 def test_plot_imshow_kwargs(self, cont: ImageContainer):
     cont.show(channel=2, cmap="inferno")
Exemplo n.º 3
0
 def test_plot_as_mask(self, cont: ImageContainer):
     cont.add_img(np.random.RandomState(42).normal(size=(*cont.shape, 3)),
                  layer="foo")
     cont.show("foo", as_mask=True, channel=1)
Exemplo n.º 4
0
 def test_plot_channel(self, cont: ImageContainer):
     cont.show(channel=1)
Exemplo n.º 5
0
 def test_mask_not_1_channels(self, cont: ImageContainer):
     with pytest.raises(ValueError,
                        match=r"Expected to find 1 channel, found `3`."):
         cont.show(channel=None, as_mask=True)