error: (-2:Unspecified error) 函数未实现。使用 Windows、GTK 2.x 或 Cocoa 支持重建库

新手上路,请多包涵

我在 jupyter notebook 上做手语检测项目。在运行实时检测代码时,我遇到了如下所示的错误:

OpenCV(4.5.1) C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-1drr4hl0\opencv\modules\highgui\src\window.cpp:651: 错误: (-2:Unspecified错误)该功能未实现。使用 Windows、GTK+ 2.x 或 Cocoa 支持重建库。如果您使用的是 Ubuntu 或 Debian,请安装 libgtk2.0-dev 和 pkg-config,然后重新运行 cmake 或在函数“cvShowImage”中配置脚本

导致这个错误的代码是:

 while True:
    ret, frame = cap.read()
    image_np = np.array(frame)

    input_tensor = tf.convert_to_tensor(np.expand_dims(image_np, 0), dtype=tf.float32)
    detections = detect_fn(input_tensor)

    num_detections = int(detections.pop('num_detections'))
    detections = {key: value[0, :num_detections].numpy()
                  for key, value in detections.items()}
    detections['num_detections'] = num_detections

    # detection_classes should be ints.
    detections['detection_classes'] = detections['detection_classes'].astype(np.int64)

    label_id_offset = 1
    image_np_with_detections = image_np.copy()

    viz_utils.visualize_boxes_and_labels_on_image_array(
                image_np_with_detections,
                detections['detection_boxes'],
                detections['detection_classes']+label_id_offset,
                detections['detection_scores'],
                category_index,
                use_normalized_coordinates=True,
                max_boxes_to_draw=5,
                min_score_thresh=.5,
                agnostic_mode=False)

    cv2.imshow('object detection',  cv2.resize(image_np_with_detections, (800, 600)))

    if cv2.waitKey(1) & 0xFF == ord('q'):
        cap.release()
        break

注意:我使用 pip install 安装了 OpenCV。

原文由 Karthik Thilakan 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1k
2 个回答

几个小时后,在 Karthik Thilakan 的第一个答案的评论下看到了这个解决方案

pip uninstall opencv-python-headless -y

pip install opencv-python --upgrade

这在 conda 环境中对我有用。谢谢卡尔提克! :)

原文由 Sachin Mohan 发布,翻译遵循 CC BY-SA 4.0 许可协议

编辑:此解决方案似乎适用于大多数用户,但并非全部。如果您属于这种情况,请参阅 Sachin Mohan 的建议答案

我在 Windows 10 上使用 yolov5 时遇到了完全相同的错误。通过键入重建库

pip uninstall opencv-python

然后

pip install opencv-python

为我工作。

原文由 greg245 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏