opencv-python 图像处理 发表于 2022-03-02 更新于 2023-10-15 分类于 Program , Python 阅读次数: Valine: 本文字数: 221 阅读时长 ≈ 1 分钟一、语法相关1. 图像读取和展示展示使用notebook12345678import cv2import matplotlib.pyplot as pltimage = cv2.imread('/path/to/image')x, y, color = image.shape # 高度 宽度 通道数量(3代表RGB)print(x, y, color)# 代表高(x)100,宽(y)200,RGB颜色的图像plt.imshow(image)小技巧和踩坑记打赏微信支付支付宝