(python)【学习记录】图像相关小记

2 篇文章 0 订阅
2 篇文章 0 订阅

打开图片:

PIL:
PIL_img=Image.open(path)
openCV:
cv.imread(

图片尺寸:

PIL:
PIL_img.size[1]
PIL_img.size[0]
openCV:
img.shape[0]
img.shape[1]

图片转bytes:

PIL:
imgByteArr = BytesIO()
PIL_img.save(imgByteArr, format='PNG')
openCV:


图片bytes转str unicode编码:

PIL:
img_byte = base64.b64encode(imgByteArr.getvalue())
img_str = img_byte.decode('ascii')
openCV:


str unicode编码 转 图片bytes:

PIL:
img_decode_ = img_str.encode('ascii') #从unicode变成ascii编码
img_decode = base64.b64decode(img_decode_)
openCV:


图片bytes 转 图片:

PIL:

openCV:
img_np_ = np.frombuffer(img_decode, np.uint8)
img = cv2.imdecode(img_np_, cv2.COLOR_RGB2BGR) #转为opencv格式

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值