python图像处理学习

Python图像处理
python图像处理学习第三天打卡!!!
一 图像缩放
函数resize()
格式:
cv2.resize(src,(160,160))
cv2.resize(src,None,fx=0.5,fy=0.5)
代码训练;

import cv2  
import numpy as np  
 
#读取图片
src = cv2.imread('4.jpg')

#图像缩放
result = cv2.resize(src, (200,100))
print(result.shape)

#显示图像
cv2.imshow("src", src)
cv2.imshow("result", result)

#等待显示
cv2.waitKey(0)
cv2.destroyAllWindows()

在这里插入图片描述

#读取图片
src = cv2.imread('4.jpg')
rows, cols = src.shape[:2]
print(rows, cols)

#图像缩放 dsize(列,行)
result = cv2.resize(src, (int(cols*0.6), int(rows*1.2)))

在这里插入图片描述
#图像缩放
result = cv2.resize(src, None, fx=0.3, fy=0.3)
在这里插入图片描述

原文链接:https://blog.csdn.net/Eastmount/article/details/82454335

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值