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
the key 'name' may not appear in the rel['subject'] or rel['object']. I think it may be the problem of the updated raw relationships.json. So you can replace them with the following codes:
if 'name' in rel['object']:
obj = rel['object']['name']
else:
obj = rel['object']['names'][0]
if 'name' in rel['subject']:
sub = rel['subject']['name']
else:
sub = rel['subject']['names'][0]
,
the intrinsic_depth is a list containing the strings rather than float numbers. You can add the following codes:
tmp_intrinsic_depth = []
for row in intrinsic_depth:
row = [float(r) for r in row]
tmp_intrinsic_depth.append(row)
intrinsic_depth = tmp_intrinsic_depth
Thanks for your great job. And here I want to report some bugs and I have remedied them.
3-D-Scene-Graph/object_prior_extraction.py
Line 45 in 0deb403
and
3-D-Scene-Graph/relation_prior_extraction.py
Line 103 in 0deb403
the key 'name' may not appear in the rel['subject'] or rel['object']. I think it may be the problem of the updated raw relationships.json. So you can replace them with the following codes:
3-D-Scene-Graph/model/keyframe/keyframe_extracion.py
Line 274 in 0deb403
the intrinsic_depth is a list containing the strings rather than float numbers. You can add the following codes:
3-D-Scene-Graph/scene_graph_tuning.py
Line 160 in 0deb403
You should firstly create the class instance first.
The text was updated successfully, but these errors were encountered: