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

Started assembling object map in test setup function

parent 2f7c3cdb
No related branches found
No related tags found
No related merge requests found
......@@ -2,13 +2,19 @@ import unittest
from extensions.chaeo.conf.testing import multichannel_zstack, pixel_classifier
from extensions.chaeo.zstack import build_stack_mask
from model_server.accessors import InMemoryDataAccessor
from model_server.accessors import generate_file_accessor, InMemoryDataAccessor
from extensions.ilastik.models import IlastikObjectClassifierModel, IlastikPixelClassifierModel
class TestZStackDerivedDataProducts(unittest.TestCase):
def setUp(self) -> None:
# need test data incl obj map
self.zstack =
self.zstack = generate_file_accessor(multichannel_zstack['path'])
pxmodel = IlastikPixelClassifierModel(
project_file=pixel_classifier['path']
)
self.pxmap = None
self.obmap = None
self.stack = None
......
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