Skip to content

Commit

Permalink
Add a short logdebug message
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavoDCC committed Jul 6, 2024
1 parent 084e946 commit c6307a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def _hair_roi_from_face_roi(face_roi, image_shape):
hair_roi.height = max(int(face_roi.height/6), 5)
hair_roi.width = max(face_roi.width, 5)
hair_roi.y_offset = min(hair_roi.y_offset, image_shape[0] - hair_roi.height)
rospy.logdebug("face_roi: {}, hair_roi: {}, img.shape: {}".format(face_roi, hair_roi, image_shape))
rospy.logdebug(f"{face_roi=}, {hair_roi=}, {image_shape=}")
return hair_roi

def recognize(self, image_msg):
Expand Down

0 comments on commit c6307a5

Please sign in to comment.