All Downloads are FREE. Search and download functionalities are using the official Maven repository.

macros.LUTMenuTool.txt Maven / Gradle / Ivy

Go to download

ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.

There is a newer version: 1.54m
Show newest version
    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