2

我开发了一个使用 android、python 和 opencv 的实时相机应用程序。应用程序因为这条指令 cv2.imshow("Frame", clone) 而崩溃。logcat 显示:

    com.chaquo.python.PyException: error: OpenCV(3.4.2) /home/smith/git/chaquo/python/server/pypi/packages/opencv-python/build/3.4.2.16/cp36-cp36m-android_15_armeabi_v7a/src/opencv/modules/highgui/src/window.cpp:632: error: (-2:Unspecified error) 
The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Carbon support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvShowImage'

当我将其替换为 plt.imshow(...,...) 然后 plt.show() 应用程序运行但不显示任何检测,因为 matplotlib.pyplot 并非旨在显示实时检测

有什么解决办法吗?

4

1 回答 1

0

正如这里提到的,OpenCV 不直接支持任何 Android 用户界面功能。最简单的解决方案可能是与您的其他问题相反,并将图像作为字节数组传输回 Java。

于 2019-08-27T13:59:53.153 回答