def toggleRGB(img):
r,g,b = cv.split(img)
img = cv.merge([b,g,r])
return img
# Combine two images for displaying side-by-side
# If maxSize is true, crops sides of image to keep under 2880 pixels in width
opencv_functions.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录