新增模型

This commit is contained in:
2025-09-26 17:18:13 +08:00
parent 77f18452c1
commit 456c7f4a01
17 changed files with 19172 additions and 282 deletions

View File

@@ -0,0 +1,6 @@
package com.ruoyi.video.domain;
import org.bytedeco.opencv.opencv_core.Rect;
public record Detection(String cls, float conf, Rect box, int colorBGR) {
}