| |
| |
|
|
| |
| |
|
|
| import torch |
|
|
| from cotracker.models.core.cotracker.cotracker import CoTracker2 |
| from cotracker.models.core.cotracker.cotracker3_offline import CoTrackerThreeOffline |
| from cotracker.models.core.cotracker.cotracker3_online import CoTrackerThreeOnline |
|
|
|
|
| def build_cotracker( |
| checkpoint: str, |
| ): |
| if checkpoint is None: |
| return build_cotracker() |
| model_name = checkpoint.split("/")[-1].split(".")[0] |
| if model_name == "cotracker": |
| return build_cotracker(checkpoint=checkpoint) |
| else: |
| raise ValueError(f"Unknown model name {model_name}") |
|
|
|
|
| def build_cotracker(checkpoint=None, offline=True, window_len=16, v2=False): |
| if v2: |
| cotracker = CoTracker2(stride=4, window_len=window_len) |
| else: |
| if offline: |
| cotracker = CoTrackerThreeOffline( |
| stride=4, corr_radius=3, window_len=window_len |
| ) |
| else: |
| cotracker = CoTrackerThreeOnline( |
| stride=4, corr_radius=3, window_len=window_len |
| ) |
|
|
| if checkpoint is not None: |
| with open(checkpoint, "rb") as f: |
| state_dict = torch.load(f, map_location="cpu") |
| if "model" in state_dict: |
| state_dict = state_dict["model"] |
| cotracker.load_state_dict(state_dict) |
| return cotracker |
|
|