「Change」

点云高精地图集成

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2022-05-23 12:49:09 +08:00
parent 7a0f877a5c
commit 5f160b0688
6 changed files with 147 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
package com.mogo.eagle.core.function.api.autopilot
import mogo.telematics.pad.MessagePad
import rule_segement.PointCloud
/**
* @author xiaoyuzhou
* @date 2021/11/1 5:57 下午
* 感知识别回调
*/
interface IMoGoAutopilotPointCloudListener {
/**
* 点云数据
*
* @param pointCloud 点云数据
*/
fun onAutopilotPointCloudDataUpdate(header: MessagePad.Header?, pointCloud: PointCloud.LidarPointCloud?)
}