Fix divide by 0 error
Fix of the edge case 0 weight that occasionally will pop up in some specific situations. This was crashing the script.
This commit is contained in:
parent
4b3c5bc24b
commit
119a945ef7
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue