Skip to content

Commit d0af4b2

Browse files
committed
Restore ScriptingInFiji to the RTD page
Also updated that page
1 parent 97b0ccb commit d0af4b2

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/ops/doc/ScriptingInFiji.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ To run Ops, scripts require an `OpEnvironment`. The easiest way to obtain an `Op
1212

1313
## Obtaining inputs
1414

15-
Scripts using SciJava Ops obtain inputs like any other SciJava script, and the lines below will provide us with an `Img` input parameter and an `Img` output parameter, as well as a `ThreadService` which we will use later.
15+
Scripts using SciJava Ops obtain inputs like any other SciJava script, and the lines below will provide us with an `Img` input parameter and an `Img` output parameter.
1616

1717
```text
18-
#@ ThreadService ts
1918
#@ Img imgInput
2019
#@output Img out
2120
```
@@ -35,10 +34,11 @@ The below script can be pasted into the Script Editor. **Ensure that the Script
3534

3635
```text
3736
#@ OpEnvironment ops
38-
#@ ThreadService ts
3937
#@ Img imgInput
4038
#@output Img out
4139
4240
// Call some Ops!
4341
out = ops.op("filter.gauss").arity2().input(imgInput, new Double(3.0)).apply()
4442
```
43+
44+
Scripting in Fiji is a convenient gateway to accessing SciJava Ops. To see more, check out some examples, such as [image deconvolution](examples/deconvolution.rst) or [FLIM analysis](examples/example_flim_analysis.rst)!

docs/ops/doc/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The combination of these libraries allows declarative image analysis workflows,
2323
CallingOps
2424
SearchingForOps
2525
Benchmarks
26+
ScriptingInFiji
2627

2728
.. toctree::
2829
:maxdepth: 2

0 commit comments

Comments
 (0)