23

我最近开始使用 openCV 和 python 并决定分析一些示例代码以了解事情是如何完成的。

但是,我找到的示例代码不断抛出此错误:

Traceback (most recent call last):
File "test.py", line 9, in <module>
img = cv2.imread(sys.argv[1],cv2.CV_LOAD_IMAGE_COLOR) ## Read image file
AttributeError: 'module' object has no attribute 'CV_LOAD_IMAGE_COLOR'

我使用的代码可以在下面找到:

import cv2
import sys
import numpy as np

if len(sys.argv) != 2: ## Check for error in usage syntax
    print "Usage : python display_image.py <image_file>"

else:
    img = cv2.imread(sys.argv[1], cv2.CV_LOAD_IMAGE_COLOR) ## Read image file

if img == None: ## Check for invalid input
    print "Could not open or find the image"
else:
    cv2.namedWindow('Display Window') ## create window for display
    cv2.imshow('Display Window', img) ## Show image in the window
    print "size of image: ", img.shape ## print size of image
    cv2.waitKey(0) ## Wait for keystroke
    cv2.destroyAllWindows() ## Destroy all windows

这是我安装的问题吗?我使用这个网站作为安装 python 和 openCV 的指南。

4

2 回答 2

42

OpenCV 3.0 附带了一些命名空间更改,这可能就是其中之一。另一个答案中给出的函数参考适用于 OpenCV 2.4.11,不幸的是有重要的重命名,包括枚举参数。

根据此处的 OpenCV 3.0 示例,正确的参数是 cv2.IMREAD_COLOR。

根据C 的 OpenCV 3.0 参考手册,CV_LOAD_IMAGE_COLOR 仍然存在。

我从上述资源和这里得出的结论是,他们在 OpenCV 3.0 python 实现中对其进行了更改。

目前,最好使用的方法如下:

img = cv2.imread("link_to_your_file/file.jpg", cv2.IMREAD_COLOR) 
于 2015-09-15T21:43:13.570 回答
-3

你试过这个吗?

import cv2
import sys
import numpy as np


cv2.CV_LOAD_IMAGE_COLOR = 1 # set flag to 1 to give colour image
#cv2.CV_LOAD_IMAGE_COLOR = 0 # set flag to 0 to give a grayscale one


img = cv2.imread("link_to_your_file/file.jpg", cv2.CV_LOAD_IMAGE_COLOR) 


cv2.namedWindow('Display Window') ## create window for display
cv2.imshow('Display Window', img) ## Show image in the window
print ("size of image: "), img.shape ## print size of image
cv2.waitKey(0) ## Wait for keystroke
cv2.destroyAllWindows() ## Destroy all windows

imread也看看这个

于 2015-05-15T12:21:47.387 回答