modules/perception/camera_tracking/README.md
The function of camera tracking module is to process the camera detection obstacles by using the omt obstacle tracker, and output the tracked obstacles for following multi sensor fusion.
├── camera_tracking // camera object tracking module
├── base // definition of tracked_target, frame_list, etc.
├── common // common used functions
├── conf // module configuration files
├── dag // dag files
├── data // tracker configuration files
├── feature_extract // feature extractor for camera tracking
├── interface // function interface files
├── proto // proto files
├── tracking // omt obstacle tracker
├── camera_tracking_component.cc
├── camera_tracking_component.h // component interface
├── cyberfile.xml // package management profile
├── README.md
└── BUILD
apollo::perception::camera::CameraTrackingComponent
| Name | Type | Description | Input channal |
|---|---|---|---|
frame | apollo::perception::onboard::CameraFrame | camera detection frame | /perception/inner/location_refinement |
Note: The input channel is structure type data. The default trigger channel is
/perception/inner/location_refinement. The detailed input channel information is inmodules/perception/camera_tracking/dag/camera_tracking.dagfile. By default, the upstream components of the messages received by the component includecamera_location_refinementandcamera_detection_single_stage.
| Name | Type | Description | Output channal |
|---|---|---|---|
frame | apollo::perception::onboard::SensorFrameMessage | camera tracked obstacles | /perception/inner/PrefusedObjects |
Note: The output channel is structure type data. The message is defined in the
modules/perception/common/onboard/inner_component_messages/inner_component_messages.hfile. The output channel message data can be subscribed by components in the same process. The detailed output channel information is inmodules/perception/camera_tracking/conf/camera_tracking_config.pb.txtfile.
modules/perception/camera_tracking/dag/camera_tracking.dagmodules/perception/camera_tracking/conf/camera_tracking_config.pb.txtmainboard -d modules/perception/camera_tracking/dag/camera_tracking.dag