我应该使用 JAI 吗?
我想开发具有大量图像处理功能的程序。我想使用 Java 和 JAI,但在我看来,Jai 已经老了,不再发展了? (http://java.sun.com/javase/technologies/desktop/媒体/jai/)
我想知道,使用QT
和c++
是更好的选择吗?
我正在寻找的两个主要优点是:跨平台代码和良好的学习机会。
I would like develop program with a lot of image processing. I would like to use Java
, and JAI, but it seems to me, that Jai is old and no longer evolve? (http://java.sun.com/javase/technologies/desktop/media/jai/)
I wonder, is it better choice to use QT
and c++
?
Two main pros which I am looking for is: cross platform code and good learning opportunity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想做图像处理,那么 JAI 3 年前所做的事情足以为你现在想做的事情奠定数学基础。新的图像格式等可能不需要对 JAI 进行新的更新。
我只是想不出一旦您完成了基本操作就需要添加任何内容 - 顶部的应用程序将获得新功能。
现在,如何将图形创意转化为
Image
,然后可以对其进行处理...awt、swing、Java FX...If you're wanting to do image processing, then what JAI did 3 years ago will be sufficient for the mathematical base of what you want to do now. New image formats etc would probably not require new updates to JAI.
I just can't think of anything that you'd need to add once you've got the basic operations - it's the application on top that's going to get new features.
Now how you get your graphical ideas into an
Image
that you can then process... awt, swing, Java FX...