File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CLIJ2 - CLIJ2.5 transition guide
2
- CLIJ2.5 is fully backwards compatible to CLIJ2 and [ CLIJx] ( https://github.com/clij/clijx ) . No code changes are necessary.
2
+ CLIJ2.5 is fully backwards compatible to CLIJ2 and [ CLIJx] ( https://github.com/clij/clijx ) .
3
+ No code changes are necessary for ImageJ macros.
3
4
However, it is recommended to update scripts which were using CLIJx-functions to use CLIJ2 instead if possible
4
- as functions from CLIJx were moved to CLIJ2.
5
+ as functions from CLIJx were moved to CLIJ2. Furhtermore, CLIJx Image Data Flow Graphs need to be updated (see below)
5
6
6
7
For example, you can replace this line using CLIJ2:
7
8
```
@@ -12,7 +13,7 @@ with this:
12
13
Ext.CLIJ2_dilateLabels(input, output, radius);
13
14
```
14
15
15
- ## Image Data Flow Graph updates (CLIJx assistant)
16
+ ## CLIJx Image Data Flow Graph updates (CLIJx assistant)
16
17
If you generated Image Data Flow Graphs as groovy scripts using the CLIJx-assistant, it might be necessary to update
17
18
those by replacing the '.clijx.' package to '.clij2.' in lines where plugins where used which were moved from clijx to
18
19
clij2. For example this line
@@ -25,7 +26,7 @@ node = new net.haesleinhuepf.clij2.assistant.interactive.generic.GenericAssistan
25
26
^ ^
26
27
```
27
28
28
- ## API Changes
29
+ ## API Updates
29
30
30
31
The following functions were renamed when transitioning from CLIJx to CLIJ2.
31
32
Again, no changes to CLIJx-based scripts are necessary. The old CLIJx functions still exist and are marked as deprecated.
You can’t perform that action at this time.
0 commit comments