Merge pull request #380 from tonysyu/mark-boundaries-regression

Make black the default boundary color for mark_boundaries.
This commit is contained in:
Johannes Schönberger
2012-12-02 23:20:01 -08:00
+1 -1
View File
@@ -13,7 +13,7 @@ def find_boundaries(label_img):
return boundaries
def mark_boundaries(image, label_img, color=(1, 1, 0), outline_color=None):
def mark_boundaries(image, label_img, color=(1, 1, 0), outline_color=(0, 0, 0)):
"""Return image with boundaries between labeled regions highlighted.
Parameters