Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法更改 ImageJ/Fiji 中的默认颜色图?也许这太明显了,但我没有在选项中发现它。或者有没有办法在打开图像后自动运行脚本并且脚本执行例如: run("Fire") ?
干杯
约翰内斯
一种解决方案是使用此宏打开文件并更改 LUT/颜色图。
macro "Open Image As Fire" { path = File.openDialog("Select a File"); open(path); run("Fire"); }