예제 #1
0
 def setUp(self):
     reset_plugins()
     # Generic image collection with images of different shapes.
     self.images = ImageCollection(self.pattern)
     # Image collection with images having shapes that match.
     self.images_matched = ImageCollection(self.pattern_matched)
     # Same images as a collection of frames
     self.frames_matched = MultiImage(self.pattern_matched)
예제 #2
0
def imgs():
    use_plugin('pil')

    paths = [
        testing.fetch('data/multipage_rgb.tif'),
        testing.fetch('data/no_time_for_that_tiny.gif')
    ]
    imgs = [
        MultiImage(paths[0]),
        MultiImage(paths[0], conserve_memory=False),
        MultiImage(paths[1]),
        MultiImage(paths[1], conserve_memory=False),
        MultiImage(os.pathsep.join(paths))
    ]
    yield imgs

    reset_plugins()
예제 #3
0
def imgs():
    use_plugin('pil')
    paths = [
        os.path.join(data_dir, 'multipage_rgb.tif'),
        os.path.join(data_dir, 'no_time_for_that_tiny.gif')
    ]
    imgs = [
        MultiImage(paths[0]),
        MultiImage(paths[0], conserve_memory=False),
        MultiImage(paths[1]),
        MultiImage(paths[1], conserve_memory=False),
        ImageCollection(paths[0]),
        ImageCollection(paths[1], conserve_memory=False),
        ImageCollection(os.pathsep.join(paths))
    ]
    yield imgs

    reset_plugins()
예제 #4
0
def teardown():
    reset_plugins()
예제 #5
0
def teardown_module(self):
    io.reset_plugins()
예제 #6
0
def setup():
    io.reset_plugins()
예제 #7
0
def teardown_module():
    io.reset_plugins()
예제 #8
0
def teardown():
    reset_plugins()
def teardown():
    sio.reset_plugins()
예제 #10
0
def teardown():
    io.reset_plugins()
예제 #11
0
 def setUp(self):
     reset_plugins()
     # Generic image collection with images of different shapes.
     self.images = ImageCollection(self.pattern)
     # Image collection with images having shapes that match.
     self.images_matched = ImageCollection(self.pattern_matched)