Skip to content
Snippets Groups Projects
Commit 0ba0d3b4 authored by Mads M. Pedersen's avatar Mads M. Pedersen
Browse files

Update area_overlapping_factor.py

parent 9826e477
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class AreaOverlappingFactor():
if R2.shape != R1.shape:
R2 = np.zeros_like(R1) + R2
if d.shape != R1.shape:
d = np.zeros_like(R1) + d
d = np.zeros_like(R1) + d
A_ol_f = np.zeros(np.maximum(R1.shape, R2.shape))
p = (R1 + R2 + d) / 2.0
......
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