gpt4 book ai didi

python - OpenCV 3 Python 3.5 python

转载 作者:行者123 更新时间:2023-12-04 23:31:36 28 4
gpt4 key购买 nike

我尝试在 anaconda 虚拟环境中安装 opencv 3。我使用了以下 binstar 包..

conda

source activate (envname)

conda install -c https://conda.binstar.org/menpo opencv

conda list

cv__version__ 也给出了正确的输出 3.1.0

这是我的第一个示例代码
 import numpy as np
import cv2

cap = cv2.VideoCapture(0)

while(True):
# Capture frame-by-frame
ret, frame = cap.read()

# Our operations on the frame come here
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

# Display the resulting frame
cv2.imshow('frame',gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break

# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

我在运行 ./fp.py 时收到以下错误:第 1 行:导入:找不到命令
./fp.py:第 2 行:导入:找不到命令
./fp.py:第 4 行:意外标记附近的语法错误 ('
./fp.py: line 4:
cap = cv2.VideoCapture(0)'

每当我将导入视频用作视频时,我都会收到错误消息:找不到视频模块。我认为这与我下载的 binstar 包中不存在 ffmpeg 有关。

最佳答案

通常,您应该运行“python fp.py”而不是 ./fp.py。

这 。命令将在当前 shell 中运行 bash-script(xxx.sh),而 python xxx.py 将运行 python 文件。

享受 !

关于python - OpenCV 3 Python 3.5 python ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38114999/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com