Args: rng: a tuple (begin,end), include begin, exclude end inplace: inplace imgs or not ( return new_imgs)
(self, rng, inplace=True)
| 249 | pass |
| 250 | |
| 251 | def scale_by_range(self, rng, inplace=True): |
| 252 | ''' |
| 253 | Args: |
| 254 | rng: a tuple (begin,end), include begin, exclude end |
| 255 | inplace: inplace imgs or not ( return new_imgs) |
| 256 | ''' |
| 257 | return self.resize_by_range(rng, inplace) |
| 258 | |
| 259 | def scale_by_list(self, size_list, num_case=1, inplace=True): |
| 260 | ''' |
nothing calls this directly
no test coverage detected