jupyter notebook oepncv 显示一张图像
程序员文章站
2022-03-03 13:50:18
...
感想
我们在用jupyter notebook的时候,经常需要可视化一些东西,尤其是一些图像,我这里给个sample code
环境
opencv-python
matplotlib
numpy
sample
import os
import numpy as np
from matplotlib import pyplot as plt
%matplotlib inline
img_dir='/Users/eric/Documents/data/wheel_train_val/train/non_defect/'
filename='00005.BMP_block_8.jpg'
img = cv2.imread(img_dir +os.sep+ filename)
plt.imshow(img)
plt.show()
参考文献
[1]. opencv.imshow will cause jupyter notebook crash. https://*.com/questions/46236180/opencv-imshow-will-cause-jupyter-notebook-crash
下一篇: 使用WMI获取windows进程信息
推荐阅读
-
Jupyter Notebook使用 tqdm显示进度条(单行显示)
-
Jupyter Notebook使用 tqdm显示进度条(单行显示)
-
jupyter notebook中图片显示不出来的解决
-
在jupyter notebook的kernel里显示自己的环境
-
两行代码解决Jupyter Notebook中文不能显示的问题
-
解决jupyter notebook图片显示模糊和保存清晰图片的操作
-
Jupyter notebook 输出部分显示不全的解决方案
-
【02】读取并显示一张图像(opencv4.2.0+VS2019)
-
可交互绘图——鼠标移到点的上方会显示该点的标签[jupyter notebook]
-
jupyter notebook图片缩小以及数学公式显示