macros.LUTMenuTool.txt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ij Show documentation
Show all versions of ij Show documentation
ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.
var lutdir = getDirectory("startup")+"luts"+File.separator;
var luts = getLutMenu();
var lCmds = newMenu("LUT Menu Tool", luts);
macro "LUT Menu Tool - C037T0b10LT6b10UTeb10T" {
cmd = getArgument();
if (cmd!="-") run(cmd);
}
function getLutMenu() {
list = getList("LUTs");
menu = newArray(3+list.length);
menu[0] = "Invert LUT";
menu[1] = "Apply LUT";
menu[2] = "-";
for (i=0; i
© 2015 - 2024 Weber Informatics LLC | Privacy Policy