Is there a simple way to invert a mask using OpenCV? For example, if I've got a mask like this:
010 111 010
I'd like to invert it and get this:
101 000 101
Note: I'm using OpenCV's Python bindings, so while it would be possible to simply loop over each element in the mask, execution speed could become an issue.
cv2.bitwise_not(mask)
would help here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With