大于默认 3x3 的 Imagej 过滤器

Imagej filter larger than the default 3x3

有没有办法使用 Imagej api 来应用比默认 3x3 更大的区域的平滑滤镜。当您 运行 Imagej 和 select 过滤器时,您可以指定尺寸,但我在 api.

中找不到该功能

在此先感谢您的帮助。

使用 Command Finder插件 > 实用程序 > 查找命令... 或仅键入 [L]),你会发现 Process > Filters > Mean... 实际上启动了这个命令:ij.plugin.filter.RankFilters("mean")

然后只需查看 RankFilters class 的 API 文档,您会发现您可以 运行 使用

的均值过滤器
rank(ImageProcessor ip, double radius, int filterType)

使用您想要的半径和过滤器类型 RankFilters.MEAN