chore: 删除废弃的zebra_detect(斑马线检测已由Mild模型替代)

This commit is contained in:
spdis
2026-07-04 21:17:34 +08:00
parent 54f13984a9
commit 7284a8d037
2 changed files with 0 additions and 328 deletions
-16
View File
@@ -1,16 +0,0 @@
/*
* zebra_detect.h — 斑马线检测函数
* ================================
* 输入图片 → 返回是否有人行横道 + 距离
*/
#pragma once
#include <opencv2/opencv.hpp>
struct ZebraResult
{
bool detected; // true = 检测到斑马线
int distance_px; // 斑马线下沿距图像下边框的像素距离, -1 = 未检测到
};
ZebraResult detect_zebra_crossing(const cv::Mat &bgr_frame);