Java 高级成像 GradientMagnitudeDescriptor

发布于 2024-11-17 00:24:24 字数 404 浏览 4 评论 0原文

我一直在阅读 API 和文档 ( http://java.sun.com/products/java-media/jai/forDevelopers/jai1_0_1guide-unc/Analysis.doc.html 9.5 边缘检测)并遇到了GradientMagnitudeDescriptor 类。事实是,此类的 create() 方法返回一个静态 RenderedOp(无论是什么)。

在提取坐标方面我该如何处理这个静态RenderedOp?

抱歉,如果这是一个愚蠢的问题,但我对图像处理和分析完全陌生。

I have been reading the API and documentation (http://java.sun.com/products/java-media/jai/forDevelopers/jai1_0_1guide-unc/Analysis.doc.html 9.5 Edge Detection) and have come across the GradientMagnitudeDescriptor class. Thing is, the create() Method of this class returns a static RenderedOp (whatever that is).

How do I deal with this static RenderedOp in terms of extracting coordinates?

Sorry if this is a stupid question, but I am completely new to image processing and analysis.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§普罗旺斯的薰衣草 2024-11-24 00:24:24

看一下 清单 9- 4 示例 GradientMagnitude 操作 看看是否有帮助。您无需调用 GradientMagnitudeDescriptor 类上的 create 方法,而是使用“GradientMagnitude”操作调用 JAI.create() 方法姓名。 JAI.create() 返回一个 RenderedOp 实例,如果需要,可以将其转换为 PlanarImage

Take a look at Listing 9-4 Example GradientMagnitude Operation and see if that helps any. You don't call the create method on the GradientMagnitudeDescriptor class, instead you call the JAI.create() method with the "GradientMagnitude" operation name. JAI.create() returns an instance of RenderedOp which can be cast to PlanarImage if you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文