|
| 1 | +/* Copyright 2021 Regents of the University of Colorado |
| 2 | + * |
| 3 | + * This program is free software: you can redistribute it and/or modify |
| 4 | + * it under the terms of the GNU General Public License as published by |
| 5 | + * the Free Software Foundation, either version 3 of the License, or |
| 6 | + * (at your option) any later version. |
| 7 | + * |
| 8 | + * This program is distributed in the hope that it will be useful, |
| 9 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | + * GNU General Public License for more details. |
| 12 | + * You should have received a copy of the GNU General Public License |
| 13 | + * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 14 | + * |
| 15 | + * Author: Christian Rickert < [email protected]> |
| 16 | + * Group: Human Immune Monitoring Shared Resource (HIMSR) |
| 17 | + * University of Colorado, Anschutz Medical Campus |
| 18 | + * |
| 19 | + * Title: CU-MacroLibrary |
| 20 | + * Summary: ImageJ2 macro library with variables and functions |
| 21 | + * |
| 22 | + * DOI: https://doi.org/ |
| 23 | + * URL: https://github.com/christianrickert/CU-MacroLibrary/ |
| 24 | + * |
| 25 | + * Description: |
| 26 | + * |
| 27 | + * CU-MacroLibrary uses the Fiji image processing package exclusively – there is no need |
| 28 | + * to install additional plugins: You can simply edit or run this code by loading and |
| 29 | + * executing it with the Macro plugin. |
| 30 | + * To install the CU-MacroLibrary with your copy of ImageJ2, simply copy the "Library.txt" |
| 31 | + * to "Fiji.app\macros" and its content will be available to any executed or installed macro. |
| 32 | + * In addition, ImageJ2's macro editor will autocomplete functions provided by the library. |
| 33 | + */ |
| 34 | + |
| 35 | +requires("1.53e"); // minimum ImageJ version |
| 36 | + |
| 37 | +/* |
| 38 | + * Variables |
| 39 | + */ |
| 40 | + |
| 41 | +// global, preset for macros |
| 42 | +var libraryVersion = "CU-MacroLibrary v0.90 (2021-05-31)"; |
0 commit comments