imgviz
图像可视化工具
| |
安装
pip install imgviz
# there are optional dependencies like skimage, below installs all.
pip install imgviz[all]
依存关系
枕头> = 5.3.0
PyYAML
入门
# getting_started.py
import imgviz
# sample data of rgb, depth, class label and instance masks
data = imgviz . data . arc2017 ()
# colorize depth image with JET colormap
depth = data [ "depth" ]
depthviz = imgviz . depth2rgb ( depth , mi
1