jupyter opencv读取图片
时间: 2023-07-03 17:25:58 浏览: 127
opencv 读取图像
要在 Jupyter Notebook 中使用 OpenCV 读取图片,你需要先安装 OpenCV 和 Jupyter Notebook。可以使用以下命令在终端中安装 OpenCV 和 Jupyter Notebook:
```
pip install opencv-python
pip install jupyter
```
安装完成后,打开 Jupyter Notebook 并创建一个新的 Python 文件。然后可以使用以下代码读取图片:
```python
import cv2
img = cv2.imread('image.jpg')
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这个代码片段将从与 Python 文件相同的目录中读取名为“image.jpg”的图像,并在窗口中显示它。如果你想在 Jupyter Notebook 中显示图像,可以使用以下代码:
```python
from matplotlib import pyplot as plt
img = cv2.imread('image.jpg')
plt.imshow(img)
plt.show()
```
这个代码片段将在 Jupyter Notebook 中显示图像。
阅读全文