Skip to content

Commit bc763c7

Browse files
committed
Modified for demo
1 parent dd66505 commit bc763c7

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

GEMstack/state/obstacle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ class ObstacleStateEnum(Enum):
3131
class Obstacle(PhysicalObject):
3232
material : ObstacleMaterialEnum
3333
collidable : bool
34-
state: ObstacleStateEnum = ObstacleStateEnum.UNKNOWN
34+
state: ObstacleStateEnum = ObstacleStateEnum.UNDETERMINED

launch/summoning.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@ recovery:
1212
drive:
1313
perception:
1414
state_estimation : GNSSStateEstimator
15-
# agent_detection : cone_detection.ConeDetector3D
15+
obstacle_detection :
16+
type: cone_detection.ConeDetector3D
17+
args:
18+
camera_name: front #[front, front_right]
19+
camera_calib_file: ./GEMstack/knowledge/calibration/cameras.yaml
20+
enable_tracking: True # True if you want to enable tracking
21+
visualize_2d: True # True to see 2D detection visualization
22+
use_cyl_roi: False # True to use a cylinder ROI
23+
save_data: False # True to save sensor input data
24+
orientation: False # True to detect flipped cones
25+
use_start_frame: True # True to output in START frame
1626
perception_normalization : StandardPerceptionNormalizer
1727
planning:
1828
# relations_estimation: pedestrian_yield_logic.PedestrianYielder

0 commit comments

Comments
 (0)