From 96e889af2fc2105179aad35bf3918a6025d19d2c Mon Sep 17 00:00:00 2001 From: diegohce Date: Tue, 1 Oct 2024 16:25:02 -0300 Subject: [PATCH] Update objdetect.cpp updated with @deadprogram suggestions Co-authored-by: Ron Evans --- objdetect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objdetect.cpp b/objdetect.cpp index ff443b35..afc319a1 100644 --- a/objdetect.cpp +++ b/objdetect.cpp @@ -228,7 +228,7 @@ FaceDetectorYN FaceDetectorYN_Create_FromBytes_WithParams(const char* framework, for(int i = 0; i < model_size; i ++) { bufferModelV.push_back(bmv[i]); } - for(int i = 0; i < config_size; i ++) { + for(int i = 0; i < config_size; i ++) { bufferConfigV.push_back(bcv[i]); }