From f2c28e7b2d2aab9ef15d0298329a0d737c0f085e Mon Sep 17 00:00:00 2001 From: Panagiotis Karagiannis Date: Mon, 25 Mar 2024 22:35:32 +0100 Subject: [PATCH] Commented out debug print statement in extract_track_edges function --- drawing_to_fsd_layout/image_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drawing_to_fsd_layout/image_processing.py b/drawing_to_fsd_layout/image_processing.py index 9691b4d..ed710dc 100644 --- a/drawing_to_fsd_layout/image_processing.py +++ b/drawing_to_fsd_layout/image_processing.py @@ -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)