python opencv 学习笔记
Posted Image Process
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python opencv 学习笔记相关的知识,希望对你有一定的参考价值。
图片缩放
image=cv2.imread(‘test.jpg‘)
res=cv2.resize(image,(32,32),interpolation=cv2.INTER_CUBIC)
cv2.imshow(‘iker‘,res)
cv2.imshow(‘image‘,image)
cv2.waitKey(0)
cv2.destoryAllWindows()
以上是关于python opencv 学习笔记的主要内容,如果未能解决你的问题,请参考以下文章