开发者社区> 问答> 正文

ubuntu系统下导入python-opencv问题?报错

代码如下:

import cv
import time
if __name__ == '__main__':
    cv.NamedWindow("camera",1)
    capture = cv.CaptureFromCAM(0)
    while True:
        img = cv.QueryFrame(capture)
        cv.ShowImage("camera",img)
        mm = int(time.strftime('%S',time.localtime()))
        if mm == 30:
            filename = "e:\pic\o\%s.jpg" % time.strftime('%Y%m%d%H%M%S',time.localtime())
        #time.sleep(2)
            cv.SaveImage(filename,img)
        if cv.WaitKey(10) == 27:
            break
    cv.DestroyWindow("camera")
同时使用dpkg -L python-opencv命令查看如下:

报错代码如下:

  Traceback (most recent call last):
  File "/home/ubulinux/application/untitled/thenewtest.py", line 2, in <module>
    import cv
 ImportError: No module named cv

Process finished with exit code 1

是什么原因?


展开
收起
爱吃鱼的程序员 2020-06-22 13:09:52 568 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    cv2试试!依然报错importcv2ImportError:Nomodulenamedcv2

    2020-06-22 13:10:10
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载