opencv中的按位运算

Posted zzdr12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencv中的按位运算相关的知识,希望对你有一定的参考价值。

import numpy as np
import cv2
import matplotlib.pyplot as plt
def show(image):
plt.imshow(image)
plt.axis(‘off‘)
plt.show()
def imread(image):
image=cv2.imread(image)
image=cv2.cvtColor(image,cv2.COLOR_BGR2RGB)
return image
rectangle=np.zeros((300,300,3),dtype=‘uint8‘)
#我们来画一个矩形
white=(255,255,255)
cv2.rectangle(rectangle,(25,25),(275,275),white,-1)
show(rectangle)

技术图片

 

 

circle=np.zeros((300,300,3),dtype=‘uint8‘)
cv2.circle(circle,(150,150),150,white,-1)
show(circle)

技术图片

 

 


#AND操作,有黑就变黑
image=cv2.bitwise_and(circle,rectangle)
show(image)

技术图片

 

 


#or操作,有白就变白
image=cv2.bitwise_or(circle,rectangle)
show(image)

技术图片

 

 


#XOR操作,同种颜色变黑,不同颜色变白
image=cv2.bitwise_xor(circle,rectangle)
show(image)

技术图片

 

 

#按位非,颜色反转,黑变白,白变黑,只需要一张图片
image=cv2.bitwise_not(circle,"输出图名称")
show(image)

技术图片

 

以上是关于opencv中的按位运算的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV 完整例程20. 图像的按位运算

Apache Pig 中的按位运算?

Java中的按位运算

c语言的按位运算符怎么操作!?

大位向量的按位运算

Masm 常量的按位运算