ImageJ 同步 Windows

ImageJ Synchronize Windows

我想知道是否可以通过 ImageJ 中的宏设置同步 Windows 的参数。

// This will open the Synchronize Windows Function
run("Synchronize Windows");

我的最佳猜测:

run("Synchronize Windows", "select=&Image1 Cursor Scaling z-Slices");

提前致谢

不,同步 Windows 命令不可录制宏。你可以通过inspecting the source code:

看到这个
  • 不使用GenericDialog
  • 它不传递任何信息给Recorder
  • 它不提供任何 public static 方法供 call
  • 使用

据我所知,真的没有办法用宏来做你想做的事。