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

饱和操作和模操作

时间:2018-09-09 11:43:41      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:nump   span   opencv   print   加法   结果   tst   矩阵   相加   

使用cv2.add()将两个图像相加,可以使用numpy中的矩阵加法来实现。但是在opencv中加法是饱和操作,也就是有上限值,numpy会对结果取模。 
综上,使用opencv的效果更好

x = np.uint8([250])
y = np.uint8([10])
print cv2.add(x,y) # 250+10 = 260 => 255
print x+y # 250+10 = 260 % 256 = 4

饱和操作和模操作

标签:nump   span   opencv   print   加法   结果   tst   矩阵   相加   

原文地址:https://www.cnblogs.com/mengxiangtiankongfenwailan/p/9612534.html

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