1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

Renamed model to prevent name conflict.

This commit is contained in:
Alexander Smorkalov
2026-07-15 15:58:50 +03:00
parent 34074075b2
commit 507c824cd8
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -364,7 +364,7 @@ TEST_P(Test_Model, YOLOv3)
cv::resize(img, img, inputSize);
Mat blob = blobFromImage(img, 1.0 / 255.0, inputSize, Scalar(), true, false);
Net net = readNet(_tf("yolov3.onnx", false));
Net net = readNet(_tf("yolov3-converted.onnx", false));
net.setPreferableBackend(backend);
net.setPreferableTarget(target);
net.setInput(blob);