我如何获得在Ubuntu上使用Python工作的OpenCV的CVtypes

问题描述:

我已经下载CVtypes并尝试使用示例脚本,但无法使其工作。我得到的错误是:我如何获得在Ubuntu上使用Python工作的OpenCV的CVtypes

[email protected]:~/python_scratch/cvtypes$ python showcam.py 
Traceback (most recent call last): 
    File "showcam.py", line 1, in <module> 
    from CVtypes import cv 
    File "/home/pete/python_scratch/cvtypes/CVtypes.py", line 580, in <module> 
    _cxDLL = cdll.cxcore100 
    File "/usr/lib/python2.6/ctypes/__init__.py", line 423, in __getattr__ 
    dll = self._dlltype(name) 
    File "/usr/lib/python2.6/ctypes/__init__.py", line 353, in __init__ 
    self._handle = _dlopen(self._name, mode) 
OSError: cxcore100: cannot open shared object file: No such file or directory 

我已经安装了所有这些包,我认为会包含所需的库很好的措施:

libcv-dev - development files for libcv 
libcv2.1 - computer vision library 
libcvaux-dev - development files for libcvaux 
libcvaux2.1 - computer vision extension library 
libhighgui-dev - development files for libhighgui 
libhighgui2.1 - computer vision GUI library 
opencv-doc - OpenCV documentation and examples 
python-opencv - Python bindings for the computer vision library 

原来CVtypes被ooooold。我需要PyOpenCV。作为Python新手的Perl编码人员,我发现不稳定和弃用有点令人讨厌。