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

Removed in-progress RoiSet test

parent 9db2ea50
No related branches found
No related tags found
2 merge requests!50Release 2024.06.03,!40ilastik workflow and API allow multichannel inputs
......@@ -377,26 +377,6 @@ class TestIlastikOnMultichannelInputs(TestServerBaseClass):
self.assertEqual(acc_obmap.hw, acc_input.hw)
self.assertEqual(len(acc_obmap._unique()[1]), 3)
def test_roiset(self): # TODO: check on how RoiSet is interpreting 3D segmentation instances
img = generate_file_accessor(self.pa_input_image)
seg = generate_file_accessor(self.pa_input_image)
roiset = RoiSet(
img,
_get_label_ids(seg),
params=RoiSetMetaParams(
mask_type='boxes',
filters={'area': {'min': 1e3, 'max': 1e4}},
expand_box_by=(64, 2)
)
)
roiset.classify_by(
'multichannel_object_class',
range(0, img.chroma),
ilm.IlastikObjectClassifierFromSegmentationModel(params={'project_file': self.pa_ob_seg_classifier}),
)
self.assertTrue(False)
def test_api(self):
resp_load = self._put(
......
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