Skip to content

Commit

Permalink
fix: remove debugging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed May 11, 2024
1 parent a73156f commit bd3b131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kimimaro/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def cross_sectional_area_helper(skel, binimg, roi):
normal = normals[i,:]
normal /= np.linalg.norm(normal)

for i, vert in tqdm(enumerate(path), total=path.shape[0]):
for i, vert in enumerate(path):
if np.any(vert < 0) or np.any(vert > shape):
continue

Expand Down

0 comments on commit bd3b131

Please sign in to comment.