You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std_msgs/Header header
uint32 seq
time stamp
string frame_id
opencv_apps/Face[] faces
opencv_apps/Rect face
float64 x
float64 y
float64 width
float64 height
opencv_apps/Rect[] eyes
float64 x
float64 y
float64 width
float64 height
string label
float64 confidence
このため、例えばmsg.faces.face.xとして受けると、エラーがでます。
私はmsg.faces[0].face.xとすることで返り値を得ることができましたが、結局なぜこうなるのかわかりません(faces[1]はout of rangeなようです)。
また、前述のよう記述する場合も、例えば大域変数rectに値をストアしてmain関数でrect.faces[0].face.xとすると
IndexError: list index out of range
となりエラーを吐きます。
The text was updated successfully, but these errors were encountered:
ロボットプログラミングの発展課題について
/face_detection/faces トピックは、以下のような構成になっています。
このため、例えばmsg.faces.face.xとして受けると、エラーがでます。
私はmsg.faces[0].face.xとすることで返り値を得ることができましたが、結局なぜこうなるのかわかりません(faces[1]はout of rangeなようです)。
また、前述のよう記述する場合も、例えば大域変数rectに値をストアしてmain関数でrect.faces[0].face.xとすると
IndexError: list index out of range
となりエラーを吐きます。
The text was updated successfully, but these errors were encountered: