Esempio n. 1
0
    def __init__(self):
        AlgorithmPluginManager.register_plugins()

        # Algorithms
        self.algo_convert_img = ConvertImage("convert_image")
        self.algo_image_io = ImageIo("image_reader")
        self.algo_track_features = TrackFeatures("feature_tracker")

        # Other tool variables
        self.image_list_filepath = None
        self.mask_list_filepath = None
        self.invert_masks = False
        self.expect_multichannel_masks = False
        self.output_tracks_filepath = None
Esempio n. 2
0
    def __init__(self):
        AlgorithmPluginManager.register_plugins()

        # Algorithms
        self.algo_convert_img = ConvertImage("convert_image")
        self.algo_image_io = ImageIo("image_reader")
        self.algo_track_features = TrackFeatures("feature_tracker")

        # Other tool variables
        self.image_list_filepath = None
        self.mask_list_filepath = None
        self.invert_masks = False
        self.expect_multichannel_masks = False
        self.output_tracks_filepath = None
Esempio n. 3
0
    def setup_class(cls):
        AlgorithmPluginManager.register_plugins()

        cls.test_image_filepath = osp.join(TEST_DATA_DIR,
                                           'test_kitware_logo.jpg')
Esempio n. 4
0
 def setup_class(cls):
     AlgorithmPluginManager.register_plugins()
Esempio n. 5
0
 def test_registered_names(self):
     AlgorithmPluginManager.register_plugins('maptk_core')
     nose.tools.assert_in('maptk_core',
                          AlgorithmPluginManager.registered_module_names())
Esempio n. 6
0
 def test_add_search_path_bad_dir(self):
     AlgorithmPluginManager.add_search_path("/probably/not/a/directory/foo")
     self.test_load_named()
Esempio n. 7
0
 def test_add_search_path(self):
     AlgorithmPluginManager.add_search_path("/")
     self.test_load_named()
Esempio n. 8
0
 def test_load_named(self):
     AlgorithmPluginManager.register_plugins("maptk_core")
Esempio n. 9
0
 def test_load(self):
     AlgorithmPluginManager.register_plugins()
Esempio n. 10
0
    def setup_class(cls):
        AlgorithmPluginManager.register_plugins()

        cls.test_image_filepath = osp.join(TEST_DATA_DIR, "test_kitware_logo.jpg")
Esempio n. 11
0
 def test_registered_names(self):
     AlgorithmPluginManager.register_plugins('maptk_core')
     nose.tools.assert_in('maptk_core',
                          AlgorithmPluginManager.registered_module_names())
Esempio n. 12
0
 def test_add_search_path_bad_dir(self):
     AlgorithmPluginManager.add_search_path("/probably/not/a/directory/foo")
     self.test_load_named()
Esempio n. 13
0
 def test_add_search_path(self):
     AlgorithmPluginManager.add_search_path("/")
     self.test_load_named()
Esempio n. 14
0
 def test_load_named(self):
     AlgorithmPluginManager.register_plugins("maptk_core")
Esempio n. 15
0
 def test_load(self):
     AlgorithmPluginManager.register_plugins()
Esempio n. 16
0
 def setup_class(cls):
     AlgorithmPluginManager.register_plugins()