Opencv for Java手机midp2.0 mid1.0

发布于 2024-11-10 08:16:23 字数 263 浏览 4 评论 0原文

我最近用 OpenCV 2.0 c++ 完成了我的项目 该项目针对视障人士。基本上图像是通过摄像头拍摄的,然后进行处理以引导盲人/视障人士。

现在我想在移动设备上不同的真实场景中测试这个项目。我有两部支持JAVA应用程序的手机(sony erricsson w810i和LG KS360)。我还读到,Java 的 OpenCV 包装函数可以使用名称 JAVACV 获得。

如果可以编写一个应用程序来测试我的实现,有人可以指导我吗? JAVACV 与这些旧的 JAVA 手机兼容吗?

I have recently completed my project in OpenCV 2.0 c++
This project is aimed for Visually Impaired persons. Basically Image is take through cam and then it is processed to guide the blind/ visually impaired person.

Now I want to test this project on a mobile device in different real scenarios. I have two mobile phones(sony erricsson w810i and LG KS360) which support JAVA apps. And I also read that OpenCV wrapper functions for java are available with the name JAVACV.

Can someone guide me if it is possible to write an app for testing my implementation? is JAVACV compatible with these old JAVA phones?

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

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

发布评论

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

评论(1

等你爱我 2024-11-17 08:16:23

这是不可能的。首先,因为JavaCV只是一个包装器,这意味着必须在系统上安装openCV,以便JavaCV可以提供一个接口,通过该接口可以访问openCV中的方法。

由于您无法在这些旧手机上运行 opencv,因此您将无法使用 JavaCV

此外,JavaCV 需要 Java SE 1.6,并且手机仅支持 MIDP 规范中包含的内容。

基于 MIDP 的移动应用程序不能使用 Java 1.6 中的整套函数/类(例如,您不能使用 ListMap 这样的泛型)代码>等)

It is not possible. First of all because JavaCV is just a wrapper, that means that openCV must be installed on the system so that JavaCV can provide an interface through which you can access the methods in openCV.

Since you can not run opencv on these older phones, you will not be able to use JavaCV

Moreover, JavaCV requires Java SE 1.6, and the phones only support what is included in the MIDP specification.

Mobile apps based on MIDP can not use the whole set of functions/classes found in Java 1.6(eg. you cannot use generics like List<?>, Map<?> etc.)

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