Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def load_file(npz_path, building):
''' Load 3D Scne Graph data in the npz files
panoramas [output] : one numpy array with object instances and one with object classes
'''
data = np.load(npz_path)['output'].item()
data = np.load(npz_path, allow_pickle=True)['output'].item()

#set bldg attributes
for key in data['building'].keys():
Expand Down Expand Up @@ -448,7 +448,7 @@ def export_segm_png(panos, gibson_pano_path, palette_path, export_viz_path):
parser.add_argument("--verified", type=int, help="Boolean to define whether to load verified (1) or only automated (0) results")
parser.add_argument("--visualize", type=int, help="Boolean to define whether to visualize (1) or not (0) the 3D Scene Graph mesh segmentation results")
parser.add_argument("--data_path", type=str, help="System path to 3D Scene Graph data")
parser.add_argument("--", type=str, default=None, help="System path to predefined color palette for visualizing")
parser.add_argument("--palette_path", type=str, default=None, help="System path to predefined color palette for visualizing")
parser.add_argument("--gibson_mesh_path", type=str, default=None, help="System path to Gibson dataset's raw mesh files (loads mesh.obj files)")
parser.add_argument("--export_viz_path", type=str, default=None, help="System path to export wavefront files when visualizing")
opt = parser.parse_args()
Expand Down