Unverified Commit bab6ea6b authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub

Merge pull request #5340 from PhytoEpidemic/master

Fix divide by 0 error
parents b2f17dd3 119a945e
...@@ -276,8 +276,8 @@ def poi_average(pois, settings): ...@@ -276,8 +276,8 @@ def poi_average(pois, settings):
weight += poi.weight weight += poi.weight
x += poi.x * poi.weight x += poi.x * poi.weight
y += poi.y * poi.weight y += poi.y * poi.weight
avg_x = round(x / weight) avg_x = round(weight and x / weight)
avg_y = round(y / weight) avg_y = round(weight and y / weight)
return PointOfInterest(avg_x, avg_y) return PointOfInterest(avg_x, avg_y)
...@@ -338,4 +338,4 @@ class Settings: ...@@ -338,4 +338,4 @@ class Settings:
self.face_points_weight = face_points_weight self.face_points_weight = face_points_weight
self.annotate_image = annotate_image self.annotate_image = annotate_image
self.destop_view_image = False self.destop_view_image = False
self.dnn_model_path = dnn_model_path self.dnn_model_path = dnn_model_path
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment