(self,
to_float32=False,
color_type='color',
file_client_args=dict(backend='disk'),
imdecode_backend='cv2')
| 29 | """ |
| 30 | |
| 31 | def __init__(self, |
| 32 | to_float32=False, |
| 33 | color_type='color', |
| 34 | file_client_args=dict(backend='disk'), |
| 35 | imdecode_backend='cv2'): |
| 36 | self.to_float32 = to_float32 |
| 37 | self.color_type = color_type |
| 38 | self.file_client_args = file_client_args.copy() |
| 39 | self.file_client = None |
| 40 | self.imdecode_backend = imdecode_backend |
| 41 | |
| 42 | def __call__(self, results): |
| 43 | """Call functions to load image and get image meta information. |
nothing calls this directly
no outgoing calls
no test coverage detected