Java 高级成像 GradientMagnitudeDescriptor
我一直在阅读 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 清单 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 theGradientMagnitudeDescriptor
class, instead you call theJAI.create()
method with the "GradientMagnitude" operation name.JAI.create()
returns an instance ofRenderedOp
which can be cast toPlanarImage
if you want.