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.
我有一些代码可以按特定顺序处理保存的 ROI 列表。我正在尝试返回并添加缺少的 ROI,但似乎只能将它们添加到 ROI 管理器中 ROI 列表的末尾。有没有办法将它们添加到特定位置?
谢谢
有没有办法将它们添加到特定位置?
没有简单的方法。该类RoiManager没有 API。它维护并行数据结构 (java.awt.List list和java.util.ArrayList rois),它们都跟踪 ROI 列表。所以你需要:
RoiManager
java.awt.List list
java.util.ArrayList rois