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
OpenPCDet
Commits
fc258622
Commit
fc258622
authored
Nov 10, 2020
by
Shaoshuai Shi
Browse files
small update of WOD
parent
ae04946d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
docs/GETTING_STARTED.md
docs/GETTING_STARTED.md
+2
-2
pcdet/datasets/waymo/waymo_dataset.py
pcdet/datasets/waymo/waymo_dataset.py
+1
-1
No files found.
docs/GETTING_STARTED.md
View file @
fc258622
...
...
@@ -87,8 +87,8 @@ pip3 install waymo-open-dataset-tf-2-0-0==1.2.0 --user
*
Extract point cloud data from tfrecord and generate data infos by running the following command (it takes several hours):
```
python
python
-
m
pcdet
.
datasets
.
waymo
.
waymo_dataset
--
func
create_waymo_infos
\
-
-
cfg_file
tools
/
cfgs
/
dataset_configs
/
waymo_dataset
.
yaml
python
-
m
pcdet
.
datasets
.
waymo
.
waymo_dataset
--
func
create_waymo_infos
\
-
-
cfg_file
tools
/
cfgs
/
dataset_configs
/
waymo_dataset
.
yaml
```
Note that you do not need to install
`waymo-open-dataset`
if you have already processed the data before and do not need to evaluate with official Waymo Metrics.
...
...
pcdet/datasets/waymo/waymo_dataset.py
View file @
fc258622
...
...
@@ -90,7 +90,7 @@ class WaymoDataset(DatasetTemplate):
for
sequence_file
in
self
.
sample_sequence_list
]
process_single_sequence
(
sample_sequence_file_list
[
0
])
#
process_single_sequence(sample_sequence_file_list[0])
with
futures
.
ThreadPoolExecutor
(
num_workers
)
as
executor
:
sequence_infos
=
executor
.
map
(
process_single_sequence
,
sample_sequence_file_list
)
sequence_infos
=
list
(
sequence_infos
)
...
...
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