Merge branch 'dev_robotaxi-d-app-module_270_220510_2.7.0_point' into dev_robotaxi-d-app-module_270_220510_2.7.0

# Conflicts:
#	core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt
This commit is contained in:
donghongyu
2022-05-24 18:31:11 +08:00
9 changed files with 185 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?)
}