imread python
时间: 2023-08-15 17:13:11 浏览: 75
Python imread、newaxis用法详解
在Python中,要使用OpenCV库中的imread函数来读取图像。以下是一个简单的示例:
```python
import cv2
# 读取图像
image = cv2.imread('image.jpg')
# 检查是否成功读取图像
if image is not None:
# 在这里可以对图像进行进一步的处理或分析
# 例如,显示图像
cv2.imshow('Image', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
else:
print('Failed to read image.')
```
在上面的代码中,我们使用imread函数从名为'image.jpg'的文件中读取图像。如果成功读取图像,则可以对图像进行进一步的处理或分析。如果未能成功读取图像,将显示错误消息"Failed to read image."
阅读全文