forked from ilastik/lazyflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
29 lines (18 loc) · 1.3 KB
/
TODO
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
TODO Document
cleanup existing code:
* remove examples directory
* write 2 examples for operators with the new api
* remove all unused operators from the codebase
* port the remaining ones to the new api
* write unit tests for each operator which test
the operators compatability with many possible dimensions and axis
cponfigurations
Regarding the cleanup of the operators using the old api the following table indicates old idioms and their new replacement:
o l d -> n e w
----------------------------------------------------------------------------------------------------------
# the specification of the input and output slots has changed as follows
class OpA(Operator): -> class OpA(Operator):
inputSlots = [InputSlot("Image"), InputSlot("scale") ] Image = InputSlot()
outputSlots = [OutptSlot("Output")] scale = InputSlot()
Outputs = OutputSlot()
----------------------------------------------------------------------------------------------------------