forked from ilastik/lazyflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestChannelSelector.py
90 lines (77 loc) · 3.38 KB
/
testChannelSelector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from builtins import range
from builtins import object
###############################################################################
# lazyflow: data flow based lazy parallel computation framework
#
# Copyright (C) 2011-2014, the ilastik developers
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the Lesser GNU General Public License
# as published by the Free Software Foundation; either version 2.1
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# See the files LICENSE.lgpl2 and LICENSE.lgpl3 for full text of the
# GNU Lesser General Public License version 2.1 and 3 respectively.
# This information is also available on the ilastik web site at:
# http://ilastik.org/license/
###############################################################################
from lazyflow.operators.generic import OpSingleChannelSelector
import numpy, vigra
from lazyflow.graph import Graph
class TestSingleChannelSelector(object):
def setUp(self):
self.data2d = numpy.zeros((3, 3, 3))
self.data2d[:, :, 0] = 1
self.data2d[:, :, 1] = 2
self.data2d[:, :, 2] = 3
self.data2d = self.data2d.view(vigra.VigraArray)
self.data2d.axistags = vigra.defaultAxistags("xyc")
self.data3d = numpy.zeros((3, 3, 3, 3))
self.data3d[:, :, :, 0] = 1
self.data3d[:, :, :, 1] = 2
self.data3d[:, :, :, 2] = 3
self.data3d = self.data3d.view(vigra.VigraArray)
self.data3d.axistags = vigra.defaultAxistags("xyzc")
self.data_bad_channel = numpy.zeros((3, 3, 3, 3))
self.data_bad_channel[:, :, 0, :] = 1
self.data_bad_channel[:, :, 1, :] = 2
self.data_bad_channel[:, :, 2, :] = 3
self.data_bad_channel = self.data_bad_channel.view(vigra.VigraArray)
self.data_bad_channel.axistags = vigra.defaultAxistags("xycz")
def test2d(self):
graph = Graph()
op = OpSingleChannelSelector(graph=graph)
op.Input.setValue(self.data2d)
for i in range(2):
op.Index.setValue(i)
out = op.Output[:].wait()
assert numpy.all(out==i+1)
def test3d(self):
graph = Graph()
op = OpSingleChannelSelector(graph=graph)
op.Input.setValue(self.data3d)
for i in range(2):
op.Index.setValue(i)
out = op.Output[:].wait()
assert numpy.all(out==i+1)
def test_bad_channel_index(self):
graph = Graph()
op = OpSingleChannelSelector(graph=graph)
op.Input.setValue(self.data_bad_channel)
for i in range(2):
op.Index.setValue(i)
out = op.Output[:].wait()
assert numpy.all(out==i+1)
if __name__ == "__main__":
import sys
import nose
sys.argv.append("--nocapture") # Don't steal stdout. Show it on the console as usual.
sys.argv.append("--nologcapture") # Don't set the logging level to DEBUG. Leave it alone.
ret = nose.run(defaultTest=__file__)
if not ret: sys.exit(1)