码迷,mamicode.com
首页 > 其他好文 > 详细

cv2抠图示例

时间:2020-11-04 18:25:47      阅读:14      评论:0      收藏:0      [点我收藏+]

标签:code   python   dem   write   imwrite   read   pre   lan   坐标   

import cv2

# 读取图片
img = cv2.imread(‘demo.png‘)

# h、w为想要截取的图片大小
h, w = 35, 170
# 坐标
x, y= 500, 425

targetImg = img[(y):(y + h), (x):(x + w)]
cv2.imwrite(‘targetImg.png‘, targetImg)

cv2抠图示例

标签:code   python   dem   write   imwrite   read   pre   lan   坐标   

原文地址:https://www.cnblogs.com/hui-code/p/13922879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!