Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Real-time 3D multi-person human pose estimation using an omnidirectional camera and three mm-Wave radars
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
at2n19
Real-time 3D multi-person human pose estimation using an omnidirectional camera and three mm-Wave radars
Commits
f5cab779
Commit
f5cab779
authored
2 years ago
by
at2n19
Browse files
Options
Downloads
Patches
Plain Diff
Update gui.py
parent
f7712082
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gui.py
+27
-1
27 additions, 1 deletion
gui.py
with
27 additions
and
1 deletion
gui.py
+
27
−
1
View file @
f5cab779
def
gui
():
conn
=
None
listener
=
None
try
:
address
=
(
'
localhost
'
,
6000
)
listener
=
Listener
(
address
,
authkey
=
None
)
conn
=
listener
.
accept
()
viewer3d
=
Viewer3D
(
"
Visualisation
"
)
while
(
True
):
poses
=
conn
.
recv
()
if
poses
==
'
close
'
:
conn
.
close
()
listener
.
close
()
viewer3d
.
quit
()
break
viewer3d
.
update_poses
(
poses
)
viewer3d
.
update_o3d_scene
()
viewer3d
.
run_one_tick
()
if
keyboard
.
is_pressed
(
'
q
'
):
conn
.
close
()
listener
.
close
()
viewer3d
.
quit
()
break
except
:
conn
.
close
()
listener
.
close
()
viewer3d
.
quit
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment