0

Is there a way to change the default colormap in ImageJ/Fiji? Maybe it is too obvious but I didnt spot it in the options. Or is there a way to run a script automatically after an image has been opened and the script does for example: run("Fire") ?

Cheers

Johannes

moc
  • 3
  • 1

1 Answers1

0

A solution would be to use this macro to open a file and change the LUT/colormap.

macro "Open Image As Fire" {
    path = File.openDialog("Select a File");
    open(path);
    run("Fire");
}
quantixed
  • 287
  • 3
  • 12