| 67 | |
| 68 | |
| 69 | class ImageMask(gr.components.Image): |
| 70 | |
| 71 | is_template = True |
| 72 | |
| 73 | def __init__(self, **kwargs): |
| 74 | super().__init__(source="upload", **kwargs) |
| 75 | |
| 76 | def preprocess(self, x): |
| 77 | return super().preprocess(x) |
| 78 | |
| 79 | |
| 80 |
no outgoing calls
no test coverage detected