From 4b9bb7ad9415359587cbefde978b334737f353e5 Mon Sep 17 00:00:00 2001 From: Tanqiu Liu Date: Mon, 18 Sep 2017 16:56:50 -0500 Subject: [PATCH] Update detect_yeast.py --- detect_yeast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detect_yeast.py b/detect_yeast.py index d721b0b..9a7f599 100644 --- a/detect_yeast.py +++ b/detect_yeast.py @@ -130,7 +130,7 @@ def get_polygon_list(image, center_list): (slopes, gradx, grady, slopes2, grad2x, grad2y, gradxy) = findslopes(image) polygon_list = list() for i in range(len(center_list)): - print("processing %s" %i) + print("processing cell %s" %i) polygon = get_polygon(image, gradx, grady, center_list[i]) polygon_list.append(polygon) return polygon_list