(self, *args, **kwargs)
| 577 | def gamma(self, v): self.__gamma = v; self.process() |
| 578 | |
| 579 | def __init__(self, *args, **kwargs): |
| 580 | self.alpha = 0.5 |
| 581 | self.beta = 0.5 |
| 582 | self.gamma = 0.0 |
| 583 | BinaryOperator.__init__(self) |
| 584 | super(OpencvAddWeighted, self).__init__("", *args, **kwargs) |
| 585 | |
| 586 | def process(self): |
| 587 | if not self.img1 is None: |