Skip to content

Commit

Permalink
Commented out debug print statement in extract_track_edges function
Browse files Browse the repository at this point in the history
  • Loading branch information
papalotis committed Mar 25, 2024
1 parent 6b62715 commit f2c28e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drawing_to_fsd_layout/image_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def extract_track_edges(
edge_pixels = np.argwhere(image_canny > 0.01)

if len(edge_pixels) < 10000:
st.write(i, len(edge_pixels))
# st.write(i, len(edge_pixels))
break
# st.write("Too many edge pixels, trying again with lower resolution")
image = rescale(image, 0.95)
Expand Down

0 comments on commit f2c28e7

Please sign in to comment.