Merge pull request #5340 from PhytoEpidemic/master

Fix divide by 0 error
This commit is contained in:
AUTOMATIC1111 2022-12-03 09:17:54 +03:00 committed by GitHub
commit bab6ea6b22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -276,8 +276,8 @@ def poi_average(pois, settings):
weight += poi.weight
x += poi.x * poi.weight
y += poi.y * poi.weight
avg_x = round(x / weight)
avg_y = round(y / weight)
avg_x = round(weight and x / weight)
avg_y = round(weight and y / weight)
return PointOfInterest(avg_x, avg_y)
@ -338,4 +338,4 @@ class Settings:
self.face_points_weight = face_points_weight
self.annotate_image = annotate_image
self.destop_view_image = False
self.dnn_model_path = dnn_model_path
self.dnn_model_path = dnn_model_path