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
{{ message }}
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
Hello, I may have a question about the following line in pose_detector.py
line 217:
found_subset_1[-2:] += score # connectionの積分値のみ加算(jointのscoreはmerge時に全て加算済み)
Isn't this one should be: found_subset_1[-2] += score ?
found_subset_1[-1] means the total count of added joints, there is no point to add a float score into it
Thank you !
The text was updated successfully, but these errors were encountered: