Skip to content
Snippets Groups Projects
Commit dd1cdf8a authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Testing access to derived channels for .accs_derived

parent 76f7ceed
No related branches found
No related tags found
No related merge requests found
......@@ -224,6 +224,10 @@ class TestRoiSetMonoProducts(BaseTestRoiSetMonoProducts, unittest.TestCase):
)
self.assertTrue(all(roiset.get_df()['classify_by_multiple_input_model'].unique() == [3]))
self.assertTrue(all(np.unique(roiset.object_class_maps['multiple_input_model'].data) == [0, 3]))
self.assertEqual(len(roiset.accs_derived), 2)
for di in roiset.accs_derived:
self.assertEqual(roiset.get_patches_acc().shape, di.shape)
return roiset
def test_export_object_classes(self):
......
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