Commit 1602973f authored by liyinhao's avatar liyinhao
Browse files

change copyright, change matlab file

parent d8517952
# Modified from Facebook, Inc. and its affiliates. # Modified from
# # https://github.com/facebookresearch/votenet/blob/master/scannet/batch_load_scannet_data.py
# This source code is licensed under the MIT license found in the # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# LICENSE file in the root directory of this source tree. """Batch mode in loading Scannet scenes with vertices and ground truth labels
""" Batch mode in loading Scannet scenes with vertices and ground truth labels
for semantic and instance segmentations for semantic and instance segmentations
Usage example: python ./batch_load_scannet_data.py Usage example: python ./batch_load_scannet_data.py
......
# Copyright (c) Facebook, Inc. and its affiliates. # Modified from
# # https://github.com/facebookresearch/votenet/blob/master/scannet/load_scannet_data.py
# This source code is licensed under the MIT license found in the # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# LICENSE file in the root directory of this source tree. """Load Scannet scenes with vertices and ground truth labels
""" Load Scannet scenes with vertices and ground truth labels
for semantic and instance segmentations for semantic and instance segmentations
""" """
import argparse import argparse
......
...@@ -30,7 +30,9 @@ end ...@@ -30,7 +30,9 @@ end
%% Map data to train or val set. %% Map data to train or val set.
load('../OFFICIAL_SUNRGBD/SUNRGBDMeta3DBB_v2.mat'); load('../OFFICIAL_SUNRGBD/SUNRGBDMeta3DBB_v2.mat');
if exist('../sunrgbd_trainval','dir')==0
mkdir('../sunrgbd_trainval');
end
fid_train = fopen('../sunrgbd_trainval/train_data_idx.txt', 'w'); fid_train = fopen('../sunrgbd_trainval/train_data_idx.txt', 'w');
fid_val = fopen('../sunrgbd_trainval/val_data_idx.txt', 'w'); fid_val = fopen('../sunrgbd_trainval/val_data_idx.txt', 'w');
......
# Copyright (c) Facebook, Inc. and its affiliates. # Modified from
# # https://github.com/facebookresearch/votenet/blob/master/sunrgbd/sunrgbd_data.py
# This source code is licensed under the MIT license found in the # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# LICENSE file in the root directory of this source tree.
''' Helper class and functions for loading SUN RGB-D objects ''' Helper class and functions for loading SUN RGB-D objects
Author: Charles R. Qi Author: Charles R. Qi
......
# Copyright (c) Facebook, Inc. and its affiliates. # Modified from
# # https://github.com/facebookresearch/votenet/blob/master/sunrgbd/sunrgbd_utils.py
# This source code is licensed under the MIT license found in the # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# LICENSE file in the root directory of this source tree.
"""Provides Python helper function to read My SUNRGBD dataset. """Provides Python helper function to read My SUNRGBD dataset.
Author: Charles R. Qi Author: Charles R. Qi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment