def init_perception(description): """create perception from description""" perception = PerceptionObstacle() perception.id = description["id"] perception.position.x = description["position"][0] perception.position.y = description["position"][1] perception.position.z = description["position"][2] perception.theta = description["theta"] perception.velocity.CopyFrom( get_velocity(description["theta"], description["speed"])) perception.length = description["length"] perception.width = description["width"] perception.height = description["height"] perception.polygon_point.extend( generate_polygon(perception.position, perception.theta, perception.length, perception.width)) # for point in generate_polygon(perception.position, perception.theta, # perception.length, perception.width): # p = perception.polygon_point.add() # p.x = point[0] # p.y = point[1] # p.z = point[2] perception.tracking_time = description["tracking_time"] perception.type = PerceptionObstacle.Type.Value(description["type"]) perception.timestamp = rospy.get_time() return perception
def init_perception(description): """ Create perception from description """ perception = PerceptionObstacle() perception.id = description["id"] perception.position.x = description["position"][0] perception.position.y = description["position"][1] perception.position.z = description["position"][2] perception.theta = description["theta"] perception.velocity.CopyFrom(get_velocity( description["theta"], description["speed"])) perception.length = description["length"] perception.width = description["width"] perception.height = description["height"] perception.polygon_point.extend(generate_polygon(perception.position, perception.theta, perception.length, perception.width)) perception.tracking_time = description["tracking_time"] perception.type = PerceptionObstacle.Type.Value(description["type"]) perception.timestamp = cyber_time.Time.now().to_sec() return perception
def init_perception(description): """create perception from description""" perception = PerceptionObstacle() perception.id = description["id"] perception.position.x = description["position"][0] perception.position.y = description["position"][1] perception.position.z = description["position"][2] perception.theta = description["theta"] perception.velocity.CopyFrom(get_velocity(description["theta"], description["speed"])) perception.length = description["length"] perception.width = description["width"] perception.height = description["height"] perception.polygon_point.extend(generate_polygon(perception.position, perception.theta, perception.length, perception.width)) # for point in generate_polygon(perception.position, perception.theta, # perception.length, perception.width): # p = perception.polygon_point.add() # p.x = point[0] # p.y = point[1] # p.z = point[2] perception.tracking_time = description["tracking_time"] perception.type = PerceptionObstacle.Type.Value(description["type"]) perception.timestamp=rospy.get_time() return perception