火灾检测模型由基于YOLOv10的火灾烟雾检测模型改为复合模型[基于YOLOv8的火灾检测模型(单火焰检测)+YOLOv10-M,专用火灾烟雾模型]

This commit is contained in:
2026-06-10 14:18:43 +08:00
parent 30ea6eb0fb
commit 0e011dacfd
6 changed files with 206 additions and 21 deletions

View File

@@ -232,6 +232,7 @@ const config = ref({
model: props.models.length > 0 ? props.models[0].id : 'fire_detection',
confidence: 0.5,
iou: 0.45,
composite: false,
algorithmConfig: {}
})
@@ -346,7 +347,8 @@ const startCamera = async () => {
config: {
model_id: config.value.model,
confidence: config.value.confidence,
iou: config.value.iou
iou: config.value.iou,
composite: config.value.composite
}
}
@@ -416,7 +418,8 @@ const updateCameraConfig = () => {
config: {
model_id: config.value.model,
confidence: config.value.confidence,
iou: config.value.iou
iou: config.value.iou,
composite: config.value.composite
}
}