文章目录
jupyter lab官方文档:https://jupyterlab.readthedocs.io/en/stable/index.html
0. 前置工作
感谢:Jupyterlab + Ipywidgets,打造交互式分析平台
首先需要激活一下ipywidgets组件
# 安装ipywidgets
pip install ipywidgets
# jupyter notebook
jupyter nbextension enable --py widgetsnbextension
# 如果是jupyter lab,需要
jupyter labextension install @jupyter-widgets/jupyterlab-manager
1. 利用ipywidgets组件展示图片
1.1 ✅ 方法1(推荐)
%matplotlib inline
import matplotlib.pyplot as plt
from ipywidgets import interact
import cv2
import glob
# 将所有图像组成一个图像列表
imgNameList=glob.glob(f'{path}/*.jpg')
imgList=[]
for imgPath in imgNameList:
img = cv2.imread(imgPath)
imgList.append(img[:,:,(2,1,0)])
# 展示图像
def browse_images(images):
n = len(images)
def view_image(i):
plt.imshow(images[i])
plt.show()
interact(view_image, i=(0,n-1))
browse_images(imgList)
呈现出的效果如下:
可以拉动滑块,切换图像,非常方便!
参考
1.2 方法2
很简单,但是略微不太方便,参考自:Jupyterlab + Ipywidgets,打造交互式分析平台
from IPython.display import Image
import ipywidgets as widgets
from ipywidgets import interact, interact_manual
baseDir='img/353/'
@interact
def show_images(file=os.listdir(baseDir)):
display(Image(baseDir+file))
展示效果:
有一个下拉选项框,可以让你从设置的文件夹中选择图像,逐个展示,不需要重复运行,也还算方便。
2. jupyter + vscode
可以在remote启动jupyter,然后在vscode里连接
(当然浏览器也可以做到这点)
参考
3. jupyter的一些插件
参考:JupyterLab Unofficial Extensions & Tools
3.1 树形目录浏览器
目前来说一直是非官方的存在,主要有
4. 获得jupyter的token
有时候比较懒,不去设置密码,直接token临时登录,但是有时候又找不到这个token。
如果是一个已经启动的jupyter服务但是忘记了或者找不到token,感谢jupyterlab获取其他浏览器登陆的token
直接在对应的python环境下输入
jupyter notebook list
获取jupyter lab的也是上述命令,不需要改成jupyter lab list