Skip to content
Snippets Groups Projects
Unverified Commit 41c34a6e authored by Michael Paniagua's avatar Michael Paniagua Committed by GitHub
Browse files

Remove unused argument "metric_map_filename" in compute_error function

(Forgot it in previous commit)
parent 787789c6
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,7 @@ def compute_error_img(metric, img, ref):
raise ValueError(f"Unknown metric: {metric}.")
def compute_error(metric, img, ref, metric_map_filename=None):
def compute_error(metric, img, ref):
metric_map = compute_error_img(metric, img, ref)
metric_map[np.logical_not(np.isfinite(metric_map))] = 0
if len(metric_map.shape) == 3:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment