Skip to content

Commit

Permalink
Merge pull request #319 from WillGiang/main
Browse files Browse the repository at this point in the history
Minor doc changes in 11-Working-with-the-original-ImageJ.ipynb
  • Loading branch information
ctrueden authored Nov 1, 2024
2 parents cf3bd1b + f91df5e commit ef57503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/11-Working-with-the-original-ImageJ.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook is part of the PyImageJ [Tutorial Series](./notebooks.rst), and assumes familiarity with the ImageJ API. Dedicated tutorials for ImageJ can be found [here](https://imagej.net/tutorials/).S"
"This notebook is part of the PyImageJ [Tutorial Series](./notebooks.rst), and assumes familiarity with the ImageJ API. Dedicated tutorials for ImageJ can be found [here](https://imagej.net/tutorials/)."
]
},
{
Expand Down Expand Up @@ -507,7 +507,7 @@
"The `ij.py.run_macro` function lets you run [ImageJ macros](https://imagej.net/scripting/macro) from Python.\n",
"\n",
"Before you get too excited, there are some things you should know:\n",
"* The macro language does not support the complete ImageJ API, only a set of [built-in functions](https://imagej.nih.gov/ij/developer/macro/functions.html), although there are [ways to work around this](https://imagej.net/scripting/macro#overcoming-limitations).\n",
"* The macro language does not support the complete ImageJ API, only a set of [built-in functions](https://imagej.net/ij/developer/macro/functions.html), although there are [ways to work around this](https://imagej.net/scripting/macro#overcoming-limitations).\n",
"* Macros are executed by a custom interpreter that is buggier and less well tested than other script languages (Groovy, JRuby, Jython, etc.).\n",
"* Macros are not intended to run concurrently, meaning you should only run one macro at a time.\n",
"* Macros only support three data types: numbers, strings, and simple arrays. Images are passed via numerical IDs.\n",
Expand Down

0 comments on commit ef57503

Please sign in to comment.