Skip to content

Commit

Permalink
(3d) fix keyword arg name (#57)
Browse files Browse the repository at this point in the history
fix data type
  • Loading branch information
GustavoDCC authored Apr 16, 2024
1 parent 780b2f1 commit 2b5ce3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def recognize(self, rgb: Image, depth: Image, camera_info: CameraInfo):
# Starting value of group_id is 1
max_group = max(person2d.body_parts[0].group_id for person2d in people2d) if people2d else 0
rospy.logdebug("Creating {} color maps for 3D skeleton visualization".format(max_group + 1))
cmap = color_map(N=max_group+1, normalized=True)
cmap = color_map(n=max_group+1, normalized=True)

markers = MarkerArray()
delete_all = Marker(action=Marker.DELETEALL)
Expand Down

0 comments on commit 2b5ce3b

Please sign in to comment.