Python imutils 填充图片周边为黑色的实现

前端之家收集整理的这篇文章主要介绍了Python imutils 填充图片周边为黑色的实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

代码

import imutils
import cv2
image = cv2.imread('')
# translate the image x=25 pixels to the right and y=75 pixels up
translated = imutils.translate(image,-75,75)
cv2.imshow('original image',image)
cv2.imshow('translated',translated)
cv2.waitKey(0)

效果

Python imutils 填充图片周边为黑色的实现


参考:https://github.com/jrosebr1/imutils

以上这篇Python imutils 填充图片周边为黑色的实现就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

原文链接:https://www.f2er.com/python/535046.html

猜你在找的Python相关文章