From a93dfc24f694003db26f29f1e0613e771654c1e9 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 1 Dec 2022 09:51:04 +0100 Subject: [PATCH] added the surface points to debugging data --- grassloper/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/grassloper/main.py b/grassloper/main.py index 6f2580e..07b1760 100755 --- a/grassloper/main.py +++ b/grassloper/main.py @@ -137,6 +137,7 @@ class SlopeFinder(): y = surface_y[x] if y != is_non_jumping_bead_image.shape[0]: surface_pts.append((x, y)) + mo_pro_listener.m_imageProcessListener.onPoint((x, y), 'surface') # print(surface_pts) x = [pt[0] for pt in surface_pts] y = [pt[1] for pt in surface_pts]