mid360使用复现fastlio
在fastlio中一直出现在黄色警告,No point,skip this scan是啥原因

mid360使用复现fastlio
在fastlio中一直出现在黄色警告,No point,skip this scan是啥原因

关注让 “紫雾凌寒” 来帮你回答,本回答结合 DeepSeek
如果还有问题,请评论或点击头像私信,如果有帮助到您, 请关注、采纳、点赞
void processScan(const sensor_msgs::LaserScan::ConstPtr& scan) {
int point_count = scan->ranges.size();
ROS_INFO_STREAM("Point count in this scan: " << point_count);
if (point_count == 0) {
ROS_WARN("No point, skip this scan");
return;
}
// 后续处理扫描数据的代码
}
希望以上解答对您有所帮助。如果您有任何疑问,欢迎在评论区提出。