Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
mmdetection3d
Commits
1602973f
Commit
1602973f
authored
Jun 13, 2020
by
liyinhao
Browse files
change copyright, change matlab file
parent
d8517952
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
19 deletions
+17
-19
data/scannet/batch_load_scannet_data.py
data/scannet/batch_load_scannet_data.py
+4
-5
data/scannet/load_scannet_data.py
data/scannet/load_scannet_data.py
+4
-5
data/sunrgbd/matlab/extract_split.m
data/sunrgbd/matlab/extract_split.m
+3
-1
data/sunrgbd/sunrgbd_data.py
data/sunrgbd/sunrgbd_data.py
+3
-4
data/sunrgbd/sunrgbd_utils.py
data/sunrgbd/sunrgbd_utils.py
+3
-4
No files found.
data/scannet/batch_load_scannet_data.py
View file @
1602973f
# Modified from Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
""" Batch mode in loading Scannet scenes with vertices and ground truth labels
# Modified from
# https://github.com/facebookresearch/votenet/blob/master/scannet/batch_load_scannet_data.py
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
"""Batch mode in loading Scannet scenes with vertices and ground truth labels
for semantic and instance segmentations
Usage example: python ./batch_load_scannet_data.py
...
...
data/scannet/load_scannet_data.py
View file @
1602973f
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
""" Load Scannet scenes with vertices and ground truth labels
# Modified from
# https://github.com/facebookresearch/votenet/blob/master/scannet/load_scannet_data.py
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
"""Load Scannet scenes with vertices and ground truth labels
for semantic and instance segmentations
"""
import
argparse
...
...
data/sunrgbd/matlab/extract_split.m
View file @
1602973f
...
...
@@ -30,7 +30,9 @@ end
%% Map data to train or val set.
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_val
=
fopen
(
'../sunrgbd_trainval/val_data_idx.txt'
,
'w'
);
...
...
data/sunrgbd/sunrgbd_data.py
View file @
1602973f
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# Modified from
# https://github.com/facebookresearch/votenet/blob/master/sunrgbd/sunrgbd_data.py
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
''' Helper class and functions for loading SUN RGB-D objects
Author: Charles R. Qi
...
...
data/sunrgbd/sunrgbd_utils.py
View file @
1602973f
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# Modified from
# https://github.com/facebookresearch/votenet/blob/master/sunrgbd/sunrgbd_utils.py
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
"""Provides Python helper function to read My SUNRGBD dataset.
Author: Charles R. Qi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment