Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Support ViTPose #1937

Merged
merged 18 commits into from
Apr 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
np type fix for numpy version
  • Loading branch information
Annbless committed Jan 19, 2023
commit e8f71af0abf923b2075a42723ba6319b936a63d5
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def _get_db(self):
dtype=np.float32)

cnt = 0
person_ids = -np.ones(self.max_persons, dtype=np.int)
person_ids = -np.ones(self.max_persons, dtype=np.int32)
for body in bodies:
if cnt >= self.max_persons:
break
Expand Down