junxnone / aiwiki

AI Wiki
https://junxnone.github.io/aiwiki
17 stars 2 forks source link

OpenCV Core bitwisexxx #444

Open junxnone opened 9 months ago

junxnone commented 9 months ago

bitwise_xxx

按位与 bitwise_and

void cv::bitwise_and(InputArray     src1,
                InputArray  src2,
                OutputArray     dst,
                InputArray  mask = noArray() 
)   
图像与图像 $\texttt{dst} (I) = \texttt{src1} (I) \wedge \texttt{src2} (I) \quad \texttt{if mask} (I) \ne0$
图像与标量 $\texttt{dst} (I) = \texttt{src1} (I) \wedge \texttt{src2} \quad \texttt{if mask} (I) \ne0$

Reference