-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrack.py
74 lines (59 loc) · 1.96 KB
/
track.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import warnings
from dataclasses import dataclass
from typing import Optional
import hydra
from hydra.core.config_store import ConfigStore
from omegaconf import DictConfig
from pdb import set_trace
from phalp.configs.base import FullConfig
from phalp.models.hmar.hmr import HMR2018Predictor
from phalp.trackers.PHALP import PHALP
from phalp.utils import get_pylogger
import numpy as np
warnings.filterwarnings('ignore')
log = get_pylogger(__name__)
class HMR2Predictor(HMR2018Predictor):
def __init__(self, cfg) -> None:
super().__init__(cfg)
# Setup our new model
from hmr2.models import download_models, load_hmr2
# Download and load checkpoints
download_models()
model, _ = load_hmr2()
self.model = model
self.model.eval()
def forward(self, x):
hmar_out = self.hmar_old(x)
batch = {
'img': x[:,:3,:,:],
'mask': (x[:,3,:,:]).clip(0,1),
}
model_out = self.model(batch)
# Overriding the SMPL params with the HMR2 params
out = hmar_out | {
'pose_smpl': model_out['pred_smpl_params'],
'pred_cam': model_out['pred_cam'],
}
return out
class PHALP_Prime_HMR2(PHALP):
def __init__(self, cfg):
super().__init__(cfg)
def setup_hmr(self):
self.HMAR = HMR2Predictor(self.cfg)
@dataclass
class Human4DConfig(FullConfig):
# override defaults if needed
pass
cs = ConfigStore.instance()
cs.store(name="config", node=Human4DConfig)
@hydra.main(version_base="1.2", config_name="config")
def main(cfg: DictConfig) -> Optional[float]:
#PoseTrack validation video lists
videos = np.load('./_DATA/posetrack-val_videos.npy')
for v in range(len(videos)):
video= videos[v]
cfg['video']['source'] = '/home/dobbang/jeon/PoseTrack/val/'+video#path assign
phalp_tracker = PHALP_Prime_HMR2(cfg)
phalp_tracker.track()
if __name__ == "__main__":
main()