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
0b882582
Commit
0b882582
authored
Jun 15, 2020
by
liyinhao
Browse files
change to fstring
parent
36466f83
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
23 deletions
+3
-23
configs/votenet/README.md
configs/votenet/README.md
+0
-20
data/scannet/batch_load_scannet_data.py
data/scannet/batch_load_scannet_data.py
+2
-2
data/scannet/load_scannet_data.py
data/scannet/load_scannet_data.py
+1
-1
No files found.
configs/votenet/README.md
deleted
100644 → 0
View file @
36466f83
# Deep Hough Voting for 3D Object Detection in Point Clouds
## Introduction
```
@inproceedings{qi2019deep,
author = {Qi, Charles R and Litany, Or and He, Kaiming and Guibas, Leonidas J},
title = {Deep Hough Voting for 3D Object Detection in Point Clouds},
booktitle = {Proceedings of the IEEE International Conference on Computer Vision},
year = {2019}
}
```
## Results and models
| Backbone | Style | Lr schd | Mem (GB) | Inf time (fps) | box AP | Download |
## Different regression loss
| Backbone | Loss type | Mem (GB) | Inf time (fps) | box AP | Download |
## Pre-trained Models
| Backbone | Style | Lr schd | Mem (GB) | Inf time (fps) | box AP | Download |
data/scannet/batch_load_scannet_data.py
View file @
0b882582
...
...
@@ -47,7 +47,7 @@ def export_one_scan(scan_name, output_filename_prefix, max_num_point,
bbox_mask
=
np
.
in1d
(
instance_bboxes
[:,
-
1
],
OBJ_CLASS_IDS
)
instance_bboxes
=
instance_bboxes
[
bbox_mask
,
:]
print
(
'Num of care instances:
'
,
instance_bboxes
.
shape
[
0
])
print
(
f
'Num of care instances:
{
instance_bboxes
.
shape
[
0
]
}
'
)
N
=
mesh_vertices
.
shape
[
0
]
if
N
>
max_num_point
:
...
...
@@ -82,7 +82,7 @@ def batch_export(max_num_point, output_folder, train_scan_names_file,
export_one_scan
(
scan_name
,
output_filename_prefix
,
max_num_point
,
label_map_file
,
scannet_dir
)
except
Exception
:
print
(
'Failed export scan:
%s'
%
(
scan_name
)
)
print
(
f
'Failed export scan:
{
scan_name
}
'
)
print
(
'-'
*
20
+
'done'
)
...
...
data/scannet/load_scannet_data.py
View file @
0b882582
...
...
@@ -72,7 +72,7 @@ def export(mesh_file,
output_file(str): Path of the output folder.
Default: None.
R
eturns:
It r
eturns
a tuple, which containts the the following things
:
ndarray: Vertices of points data.
ndarray: Indexes of label.
ndarray: Indexes of instance.
...
...
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