You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def load_point_vis(path, masks):
with open(path, 'rb') as f:
n = struct.unpack('<Q', f.read(8))[0]
print('point number: {}'.format(n))
for i in range(n):
m = struct.unpack('<I', f.read(4))[0]
for j in range(m):
idx, u, v = struct.unpack('<III', f.read(4 * 3))
masks[idx][v, u] = 1
在depths, masks = load_colmap(image_list, args.datadir,args.depth_H, args.depth_W)这个函数里
def load_point_vis(path, masks):
with open(path, 'rb') as f:
n = struct.unpack('<Q', f.read(8))[0]
print('point number: {}'.format(n))
for i in range(n):
m = struct.unpack('<I', f.read(4))[0]
for j in range(m):
idx, u, v = struct.unpack('<III', f.read(4 * 3))
masks[idx][v, u] = 1
由于在linux装colmap没有装成功,所以在windows用colmap生成之后然后移过去,就没有用你们的脚本跑
但是在跑的时候在这一段出错了
请问您有遇到过吗 不知道是生成的数据的问题(没有在linux上用你们的脚本跑 但是我在windows下跑的时候也按照你们给定的参数设置了)
The text was updated successfully, but these errors were encountered: