Spaces:
Running on Zero
Running on Zero
File size: 5,679 Bytes
aff3c6f 4ce5a27 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f 0b472f0 aff3c6f | 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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | # inference_track.py
import torch
import numpy as np
import os
from pathlib import Path
from tqdm import tqdm
from huggingface_hub import hf_hub_download
from tracking_one import TrackingModule
from models.tra_post_model.tracking import graph_to_ctc
MODEL = None
DEVICE = torch.device("cpu")
def load_model(use_box=False):
"""
load tracking model from Hugging Face Hub
Args:
use_box: use bounding box as input (default: False)
Returns:
model: loaded tracking model
device
"""
global MODEL, DEVICE
try:
print("๐ Loading tracking model...")
# ๅๅงๅๆจกๅ
MODEL = TrackingModule(use_box=use_box)
# Load checkpoint from Hugging Face Hub
ckpt_path = hf_hub_download(
repo_id="phoebe777777/111",
filename="microscopy_matching_tra.pth",
token=None,
force_download=False
)
print(f"โ
Checkpoint downloaded: {ckpt_path}")
# Load weights
MODEL.load_state_dict(
torch.load(ckpt_path, map_location="cpu"),
strict=True
)
MODEL.eval()
# Move model to device
if torch.cuda.is_available():
DEVICE = torch.device("cuda")
MODEL.move_to_device(DEVICE)
print("โ
Model moved to CUDA")
else:
DEVICE = torch.device("cpu")
MODEL.move_to_device(DEVICE)
print("โ
Model on CPU")
print("โ
Tracking model loaded successfully")
return MODEL, DEVICE
except Exception as e:
print(f"โ Error loading tracking model: {e}")
import traceback
traceback.print_exc()
return None, torch.device("cpu")
@torch.no_grad()
def run(model, video_dir, box=None, device="cpu", output_dir="tracked_results"):
"""
run tracking inference on video frames
Args:
model: loaded tracking model
video_dir: directory of video frame sequence (contains consecutive image files)
box: bounding box (optional)
device: device
output_dir: output directory
Returns:
result_dict: {
'track_graph': TrackGraph object containing tracking results,
'masks': tracked masks (T, H, W),
'output_dir': output directory path,
'num_tracks': number of tracked trajectories
}
"""
if model is None:
return {
'track_graph': None,
'masks': None,
'output_dir': None,
'num_tracks': 0,
'error': 'Model not loaded'
}
try:
print(f"๐ Running tracking inference on {video_dir}")
# Run tracking
track_graph, masks = model.track(
file_dir=video_dir,
boxes=box,
mode="greedy", # Optional: "greedy", "greedy_nodiv", "ilp"
dataname="tracking_result"
)
# ๅๅปบ่พๅบ็ฎๅฝ
if not os.path.exists(output_dir):
os.makedirs(output_dir)
# Convert tracking results to CTC format and save
print("๐ Converting to CTC format...")
ctc_tracks, masks_tracked = graph_to_ctc(
track_graph,
masks,
outdir=output_dir,
)
print(f"โ
CTC results saved to {output_dir}")
print(f"โ
Tracking completed")
result = {
'track_graph': track_graph,
'masks': masks,
'masks_tracked': masks_tracked,
'output_dir': output_dir,
}
return result
except Exception as e:
print(f"โ Tracking inference error: {e}")
import traceback
traceback.print_exc()
return {
'track_graph': None,
'masks': None,
'output_dir': None,
'num_tracks': 0,
'error': str(e)
}
def visualize_tracking_result(masks_tracked, output_path):
"""
visualize tracking results
Args:
masks_tracked: masks with tracking results (T, H, W)
output_path: output video file path
Returns:
output_path: output video file path
"""
try:
import cv2
import matplotlib.pyplot as plt
from matplotlib import cm
T, H, W = masks_tracked.shape
# create a color map for unique track IDs
unique_ids = np.unique(masks_tracked)
num_colors = len(unique_ids)
cmap = cm.get_cmap('tab20', num_colors)
# create video writer
fourcc = cv2.VideoWriter_fourcc(*'mp4v')
out = cv2.VideoWriter(output_path, fourcc, 5.0, (W, H))
for t in range(T):
frame = masks_tracked[t]
# create colored image
colored_frame = np.zeros((H, W, 3), dtype=np.uint8)
for i, obj_id in enumerate(unique_ids):
if obj_id == 0:
continue
mask = (frame == obj_id)
color = np.array(cmap(i % num_colors)[:3]) * 255
colored_frame[mask] = color
# convert to BGR (OpenCV format)
colored_frame_bgr = cv2.cvtColor(colored_frame, cv2.COLOR_RGB2BGR)
out.write(colored_frame_bgr)
out.release()
print(f"โ
Visualization saved to {output_path}")
return output_path
except Exception as e:
print(f"โ Visualization error: {e}")
return None
|