From dd11c491d99091650c5aa2ec7b4557443aaaf554 Mon Sep 17 00:00:00 2001 From: cmhu <2657262686@qq.com> Date: Thu, 27 Mar 2025 19:01:16 +0800 Subject: [PATCH] 修复过滤未生效的问题 --- src/reprocessing_module/snapshot_reprocessing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reprocessing_module/snapshot_reprocessing.cpp b/src/reprocessing_module/snapshot_reprocessing.cpp index 3071f2d..0648348 100755 --- a/src/reprocessing_module/snapshot_reprocessing.cpp +++ b/src/reprocessing_module/snapshot_reprocessing.cpp @@ -30,7 +30,7 @@ static void box_expansion(video_object_info& obj_info, float expand_ratio, int f void snapshot_reprocessing::screen_effective_snapshot(vector &vec_det_result){ - for (auto det_result : vec_det_result) + for (auto& det_result : vec_det_result) { int effective_count = 0; int effective_idx = 0; -- libgit2 0.21.4