Re: LUT
Posted by
Jerome Mutterer on
URL: http://imagej.273.s1.nabble.com/LUT-tp3703281p3703282.html
Bo,
You can sort of override ImageJ open command with the following macro,
which can be run by pressing 'F1'. You can also add this macro to
StartupMacros.txt so that it is installed every time you start ImageJ.
Jerome.
macro "Open with LUT [F1]" {
open();
if (bitDepth()==8)
open("/location/ImageJ/plugins/Lookup_Tables/Blue_Green_Red.lut");
}
}Quoting Elena Kardash <
[hidden email]>:
> hi, Bo,
> i had the same question ann could not add the desired lut to the menu,
> instead i run the macro: it calls the desired lut from the Lookup_Tables
> plugin in the ImageJ
> folder.
> for example:
> open("/location/ImageJ/plugins/Lookup_Tables/Blue_Green_Red.lut");
> it applies to the activated image but maybe you could apply it to all ...
> elena
>
> -------------------
>> Can I permanently add a LUT to the Image-Lookup tables menu?
>> If not, how do I easily apply a LUT, that's not in the menu, to all my
>> open images?
>>
>> Bo
>>
>