(depth_pred, depth_gt, mask)
| 65 | return x_, [mi,ma] |
| 66 | |
| 67 | def abs_error_numpy(depth_pred, depth_gt, mask): |
| 68 | depth_pred, depth_gt = depth_pred[mask], depth_gt[mask] |
| 69 | return np.abs(depth_pred - depth_gt) |
| 70 | |
| 71 | def abs_error(depth_pred, depth_gt, mask): |
| 72 | depth_pred, depth_gt = depth_pred[mask], depth_gt[mask] |
nothing calls this directly
no outgoing calls
no test coverage detected