(self, obj)
| 12 | |
| 13 | class NumpyEncoder(json.JSONEncoder): |
| 14 | def default(self, obj): |
| 15 | if isinstance(obj, np.ndarray): |
| 16 | return obj.tolist() |
| 17 | return json.JSONEncoder.default(self, obj) |
| 18 | |
| 19 | |
| 20 | def get_depthmap_resolution(args, photos): |
nothing calls this directly
no outgoing calls
no test coverage detected