Skip to content

Commit 4427145

Browse files
added statement about CLIJ-Ops
1 parent 11a4e7a commit 4427145

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

clij2_transition_notes.md

+26
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,32 @@ Ext.CLIJ2_scale2D(input, output, scaleFactorX, scaleFactorY)
7777
These methods found to many maxima in flat regions with local maxima in CLIJ as reported on [image.sc](https://forum.image.sc/t/clij2-alpha-release/33821/5). For backwards-compatibility reasons, these methods were not touched in CLIJ.
7878
However, CLIJ2 contains updated minima/maxima detectors.
7979

80+
## Deprecated ImageJ-Ops support
81+
The ImageJ-Ops API was discontinued. You can transition CLIJ-Ops code to CLIJ2 by replacing lines like this:
82+
83+
```
84+
#@IOService io
85+
#@OpService ops
86+
87+
inputGPU = ops.run("CLIJ_push", input)
88+
targetGPU = ops.run("CLIJ_create", [input.dimension(0), input.dimension(1)], inputGPU.getNativeType())
89+
ops.run("CLIJ_maximumZProjection", imageOutput, imageInput)
90+
target = ops.run("CLIJ_pull", targetGPU)
91+
ui.show(target)
92+
```
93+
94+
with
95+
96+
```
97+
from net.haesleinhuepf.clij2 import CLIJ2;
98+
clij2 = CLIJ2.getInstance();
99+
100+
inputGPU = clij2.push(input);
101+
targetGPU = clij2.create([inputGPU.getWidth(), inputGPU.getHeight()], inputGPU.getNativeType());
102+
clij2.maximumZProjection(inputGPU, targetGPU);
103+
clij2.show(targetGPU, "result");
104+
```
105+
80106
## Maven dependencies
81107
Developers who accessed CLIJ or dev/alpha versions of CLIJ2 and CLIJx via maven may have to change an entry in their pom.xml file.
82108
The dependencies clij-coremem and clij-clearcl changed their group-id from net.clearcontrol to net.haesleinhuepf.

0 commit comments

Comments
 (0)