(self, name, args)
| 17 | @register(inputs=['inp'], outputs=['out']) |
| 18 | class Shaper: |
| 19 | def __init__(self, name, args): |
| 20 | self.name = name |
| 21 | self._mode = args['mode'] |
| 22 | self._map = dict() |
| 23 | |
| 24 | def expand(self, box, max_w, max_h, ratio): |
| 25 | l = box[0] |
nothing calls this directly
no outgoing calls
no test coverage detected