(self)
| 526 | super(OpencvBitwiseAnd, self).__init__("", *args, **kwargs) |
| 527 | |
| 528 | def process(self): |
| 529 | if not self.img1 is None: |
| 530 | if not self.img2 is None: |
| 531 | self.set_image_data(cv2.bitwise_and(self.img1, self.img1, mask=self.img2)) |
| 532 | |
| 533 | |
| 534 | class OpencvBitwiseOr(OpencvImage, BinaryOperator): |
nothing calls this directly
no test coverage detected