4

我想使用 LibHand 手势库,但我无法在 Ubuntu 13.10 上启动它。

我已经编译成功(在克服了与链接器相关的一些问题之后),但是在运行pose_designer时,OpenCV库记录了GUI支持功能没有实现,指示我安装libgtk2.0-dev和pkg-config。但是,在安装这些包并重建 OpenCV 库后,问题仍然存在。受到具有类似 OpenCV 问题的人的 SO 帖子的启发(OpenCV 错误:该功能未实现),我切换到 libqt。不幸的是,问题仍然存在。

日志文件的摘录附在下面。此错误的原因可能是什么?

WARNING: the mesh 'hand.mesh' includes vertices with more than 4 bone
  assignments. The lowest weighted assignments beyond this limit have been
  removed, so your animation may look slightly different. To eliminate this,
  reduce the number of bone assignments per vertex on your mesh to 4.
OpenCV Error: 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 cvNamedWindow, file /home/user/Downloads/opencv-2.4.8/modules/highgui
  /src/window.cpp, line 483
Exception: /home/user/Downloads/opencv-2.4.8/modules/highgui/src/window.cpp:483:
  error: (-2) 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 cvNamedWindow
4

2 回答 2

1

好吧,你必须回去重建opencv(highgui模块)。

运行 cmake (或 cmake-gui ),并调整设置,直到它确认 gui 支持:

  GUI: 
    QT:                          NO
    Win32 UI:                    YES
    OpenGL support:              NO
    VTK support:                 NO

(嗯,这是为了赢,但你会有一个 GTK 条目应该是“打开”)

于 2014-03-28T15:55:55.967 回答
0

在提取的目录中查找CMakeLists.txt,您可以在其中找到启用和禁用不同支持的选项。

  1. Windows WITH_VFW "包括 Windows 支持的视频"
  2. Carbon WITH_CARBON "在 UI 中使用 Carbon 而不是 Cocoa"
  3. GTK+ 2.x WITH_GTK_2_X "使用 GTK 版本 2"
于 2015-12-11T06:30:57.293 回答