1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +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
@@ -220,7 +220,7 @@ PERF_TEST_P_(DNNTestNetwork, YOLOv3)
Mat sample = imread(findDataFile("dnn/dog416.png"));
cv::resize(sample, sample, Size(416, 416));
Mat inp = blobFromImage(sample, 1.0 / 255.0, Size(), Scalar(), true);
processNet("dnn/yolov3.onnx", "", inp);
processNet("dnn/yolov3-converted.onnx", "", inp);
}
PERF_TEST_P_(DNNTestNetwork, YOLOv4)