Skip to content

Commit

Permalink
add agent caracteristic
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre-Bonneau committed Jan 20, 2021
1 parent 0a532d5 commit 68651d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pyuwds3/types/scene_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def __init__(self,
p_cov_h=0.85, m_cov_h=1e-9,
p_cov_p=0.8, m_cov_p=0.01,
p_cov_r=0.06, m_cov_r=0.001,
time=None):
time=None,
agent=False):
""" Scene node constructor
"""
self.id = str(uuid.uuid4()).replace("-", "")
Expand All @@ -60,6 +61,8 @@ def __init__(self,
self.bbox = None
self.mask = None

self.agent=agent

self.n_init = n_init
self.max_lost = max_lost
self.max_age = max_age
Expand Down

0 comments on commit 68651d0

Please sign in to comment.