-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo_student_keepfirst_TAP.py
227 lines (186 loc) · 7.8 KB
/
demo_student_keepfirst_TAP.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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
import time
import numpy as np
import saverloader
import utils.improc
from utils.basic import print_, print_stats
import torch
from tensorboardX import SummaryWriter
import torch.nn.functional as F
from fire import Fire
import sys
import cv2
from pathlib import Path
import os
from nets.pipsUS_v7 import PipsUS
# from ultrasound.data import USDataset
from torch.utils.data import DataLoader
from ultrasound.pseudo_label import extract_keypoints, cvt_opencv_kps_to_numpy
# from ultrasound.sanity_check_pseudo_label import generate_pseudo_gt
from ultrasound.sanity_check_data import USDataset
import re
from nets.pips2 import Pips
def generate_translation_sequence(img, quat_seq_len=25):
img = img.cpu().numpy() # H,W,3
print(img.shape)
seq = [img]
dx = np.linspace(0, 51, quat_seq_len)
print(dx.shape)
dx = np.concatenate((dx, dx[::-1][1:], -dx[1:], -dx[::-1][1:]))
for i in range(dx.shape[0]):
new_image = translate_image(img, dx[i], 0)
seq.append(new_image)
seq = np.array(seq)
seq = torch.from_numpy(seq)
return seq
def translate_image(img, dx, dy):
aug_mat = np.zeros((2, 3))
aug_mat[0, 0] = 1
aug_mat[1, 1] = 1
aug_mat[0, 2] = dx
aug_mat[1, 2] = dy
h, w, c = img.shape
aug_img = cv2.warpAffine(img, aug_mat, (w, h), flags=cv2.INTER_LINEAR)
return aug_img
def get_trajs(model, rgbs, S, iters=16, sw=None, counter=0, N=256, keypoint_type='harris', device='cpu', pips2start=False):
# rgbs: video_length x H x W x C
# cut shorter
video_length = min(50, rgbs.shape[0])
rgbs = rgbs[0:video_length]
video_length, H, W, _ = rgbs.shape
rgbs = rgbs.float() # video_length, H, W, C
rgbs = rgbs.to(device)
if not pips2start:
# get init keypoints
init_rgbs = rgbs[0:1].permute(0,3,1,2).repeat(S,1,1,1).unsqueeze(0).float() # 1 x S x C x H x W
# pick N points to track; we'll use a uniform grid
N_ = np.sqrt(N).round().astype(np.int32)
grid_y, grid_x = utils.basic.meshgrid2d(1, N_, N_, stack=False, norm=False, device='cpu')
grid_y = 8 + grid_y.reshape(1, -1)/float(N_-1) * (H-16)
grid_x = 8 + grid_x.reshape(1, -1)/float(N_-1) * (W-16)
xy0 = torch.stack([grid_x, grid_y], dim=-1) # 1, N_*N_, 2
# zero-vel init
traj0 = np.repeat(xy0.numpy(), S, axis=0) # S x N x 2
traj0 = np.expand_dims(traj0, axis=0) # 1 x S x N x 2
traj0 = torch.from_numpy(traj0).float().to(device)
print("traj0.shape", traj0.shape)
assert(traj0.shape[1] == init_rgbs.shape[1] == S)
# get sub seq
# number of points
N = traj0.shape[2]
traj_pre = traj0.clone()
trajs_e = torch.zeros((1, video_length, N, 2)).to(device)
trajs_e[0, 0:1] = traj0[0,-1:]
model.eval()
prev = init_rgbs.clone()
with torch.no_grad():
for i in range(1, video_length):
curr = rgbs[i].unsqueeze(0).permute(0,3,1,2).float() # 1 x C x H x W
preds_coords, _, _ = model(traj_pre, prev, curr, iters=iters, beautify=True)
pred_point = preds_coords[-1] # 1 x N x 2
trajs_e[0,i] = pred_point[0]
# update traj_pre
traj_pre = torch.cat([trajs_e[0,0:1], traj_pre[0,2:], pred_point], dim=0).unsqueeze(0)
prev = torch.cat([init_rgbs[:,0:1], prev[:,2:], curr.unsqueeze(0)], dim=1)
if device == 'cuda:0':
torch.cuda.empty_cache()
if sw is not None and sw.save_this:
rgbs = rgbs.permute(0,3,1,2).unsqueeze(0)
# trajs_gt =
rgbs_prep = utils.improc.preprocess_color(rgbs)
# sw.summ_traj2ds_on_rgbs('outputs/trajs_on_rgbs', trajs_e[0:1], utils.improc.preprocess_color(rgbs[0:1]), cmap='hot', linewidth=1, show_dots=False)
rgb_save = sw.summ_traj2ds_on_rgbs('outputs/trajs_on_rgbs', trajs_e[0:1], utils.improc.preprocess_color(rgbs[0:1]), cmap='hot', linewidth=1, show_dots=False, only_return=True)
rgb_save = rgb_save[0]
rgb_save = rgb_save.permute(0,2,3,1)
# save the video
out = cv2.VideoWriter('realtime_valid_translate_TAP_vis_' + str(counter).zfill(3) + '.mp4', cv2.VideoWriter_fourcc(*'mp4v'), 4, (W, H))
for i in range(rgb_save.shape[0]):
out.write(cv2.cvtColor(rgb_save[i].numpy().astype(np.uint8), cv2.COLOR_RGB2BGR))
out.release()
return trajs_e
def main(model_path, device='cpu', log_freq=1, log_dir='./logs_demo', model_name='model', stride=8):
# read params from model path
model_params = model_path.split('/')[-1]
if model_params.find('harris') != -1:
keypoint_type = 'harris'
elif model_params.find('sift') != -1:
keypoint_type = 'sift'
elif model_params.find('shi-tomasi') != -1:
keypoint_type = 'shi-tomasi'
elif model_params.find('orb') != -1:
keypoint_type = 'orb'
print("find keypoint type:", keypoint_type)
# find iter
iters = -1
for i in range(10000):
if model_params.find("_i%d" % i)!= -1:
iters = i
print("model iteration time:", iters)
break
if iters == -1:
print("can not read iteration number from model, set as default (16)")
iters = 16
# find history len
history_seq_len = -1
for i in range(100):
if model_params.find("_S%d" % i)!= -1:
history_seq_len = i
print("model history seq len S:", history_seq_len)
break
if history_seq_len == -1:
print("can not read history seq len S from model!!")
return
# find image shape
H, W = -1, -1
for i in range(128, 1025):
if model_params.find("_size%d" % i) != -1:
st = model_params.find("_size%d" % i)
sub_string = model_params[st:st + 15] # should be long enough
num = re.findall(r'\d+', sub_string)
H = num[0]
W = num[1]
print("reshape size:", H, W)
reshape_size = (int(H), int(W))
break
if H == -1 or W == -1:
print("can not read reshape size from model!!")
return
# build model
model = PipsUS(stride=stride, history_seq_len=history_seq_len)
model.init_realtime_delta()
if device == 'cuda:0':
model = model.cuda()
# load checkpoint
saverloader.load(model_path, model, model_name=model_name)
# load data
print("loading data...")
dataset = USDataset('valid', reshape_size)
dataloader = DataLoader(dataset, batch_size=1, shuffle=False, num_workers=0, drop_last=False)
print("finish loading data! Dataset size: ", len(dataset))
log_dir = 'logs_demo'
writer_t = SummaryWriter(log_dir + '/' + model_params + '/t', max_queue=10, flush_secs=60)
# run model
model.eval()
with torch.no_grad():
for i, data in enumerate(dataloader):
if i > 4:
break
sw_t = utils.improc.Summ_writer(
writer=writer_t,
global_step=i+1,
log_freq=log_freq,
fps=16,
scalar_freq=int(log_freq/2),
just_gif=True)
us_clips = data['rgbs'][0].to(device)
print(us_clips.shape)
# stable motion
us_clips = generate_translation_sequence(us_clips[0]).to(device)
print('us_clips', us_clips.shape)
if us_clips.shape[0] < history_seq_len+5:
continue
# run model
trajs_e = get_trajs(model, us_clips, S=history_seq_len, iters=iters, sw=sw_t, counter=i, keypoint_type=keypoint_type, device=device)
print('trajs_e', trajs_e.shape)
if __name__ == '__main__':
experiment = 'checkpoints/pipsUSv7_i6_S8_size256_256_kpsift_lr5e-4_A_Feb13_randomtrans'
main(experiment, device='cuda:0', model_name='model', stride=8)