fix parenthesis

master
CptCaptain 3 years ago
parent 0d18f71c6d
commit e7a1b59787
  1. 6
      data/dataset.py

@ -89,9 +89,9 @@ class TrackSynDataset(torchext.BaseDataset):
R = []
t = []
for tidx in track_ind:
disps.append(np.load(os.path.join(sample_path, f'disp0_{tidx}.npy')), allow_pickle=True)
R.append(np.load(os.path.join(sample_path, f'R_{tidx}.npy')), allow_pickle=True)
t.append(np.load(os.path.join(sample_path, f't_{tidx}.npy')), allow_pickle=True)
disps.append(np.load(os.path.join(sample_path, f'disp0_{tidx}.npy'), allow_pickle=True))
R.append(np.load(os.path.join(sample_path, f'R_{tidx}.npy'), allow_pickle=True))
t.append(np.load(os.path.join(sample_path, f't_{tidx}.npy'), allow_pickle=True))
ret[f'disp0'] = np.stack(disps, axis=0)
ret['R'] = np.stack(R, axis=0)
ret['t'] = np.stack(t, axis=0)

Loading…
Cancel
Save