二、图片加载与保存
一、基本概念
1,什么是图片? 答:图像是结构化存储的数据信息
2,图像的属性 答:1、通道数目,2、宽与高,3、像素数据,4、图像类型
二、加载显示图像并保存
import cv2
import numpy as np
def get_image_info(image):
print(type(image))#
print(image.shape)# (150, 110, 3)
print(image.size)# 49500 = 150*110*3
print(image.dtype)# uint8
print(np.array(image))
'''
[[[255 255 255]
[255 255 255]
[255 255 255]
...
[255 255 255]
[255
二、图片加载与保存最先出现在Python成神之路。
共有 0 条评论