Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
J
jfxmap_python
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
oscar
jfxmap_python
Commits
150f3ee8
Commit
150f3ee8
authored
Jan 05, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交更新
parent
286acf27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
trans_data.py
script/trans_data.py
+10
-2
No files found.
script/trans_data.py
View file @
150f3ee8
...
...
@@ -445,10 +445,16 @@ if __name__ == '__main__':
xyz
=
np
.
array
(
pcd
.
points
)
drawpointcloud
=
[]
merge_geos
=
[
pcd
]
for
bbox
in
bboxes
:
flag
=
in_hull
(
xyz
,
bbox
[
1
])
print
(
xyz
[
flag
])
point_cloud
=
o3d
.
geometry
.
PointCloud
()
color_
=
[[
0
,
1
,
1
]]
point_cloud
.
colors
=
o3d
.
utility
.
Vector3dVector
(
color_
)
point_cloud
.
points
=
o3d
.
utility
.
Vector3dVector
(
xyz
[
flag
])
drawpointcloud
+=
[
point_cloud
]
drawpointcloud
+=
[
gen_o3d_3dbboxes
(
bbox
[
1
])]
#渲染bbox
merge_geos
+=
[
gen_o3d_3dbboxes
(
bbox
[
1
])]
heading_point
=
(
bbox
[
3
][
0
]
+
bbox
[
3
][
2
])
/
2
...
...
@@ -464,7 +470,8 @@ if __name__ == '__main__':
merge_geos
+=
[
axis_pcd
]
#pcd.paint_uniform_color([1.00, 0, 0])
custom_draw_geometry_with_key_callback
(
merge_geos
,
file_path
)
# custom_draw_geometry_with_key_callback(merge_geos, file_path)
custom_draw_geometry_with_key_callback
(
drawpointcloud
,
file_path
)
# pcd_list = glob.glob("D:/work/git_workspace/jfxmap_python/script/data_aug_samples/10-1_pcds/*.pcd")
# print(pcd_list)
\ No newline at end of file
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