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

replace Qualcomm yolov3.onnx with darknet-converted yolov3

This commit is contained in:
Prasadayus
2026-06-05 20:12:08 +05:30
parent 8fdf15e26e
commit 56ae1e603b
6 changed files with 84 additions and 168 deletions
+1 -1
View File
@@ -218,7 +218,7 @@ PERF_TEST_P_(DNNTestNetwork, YOLOv3)
#endif
Mat sample = imread(findDataFile("dnn/dog416.png"));
cv::resize(sample, sample, Size(640, 640));
cv::resize(sample, sample, Size(416, 416));
Mat inp = blobFromImage(sample, 1.0 / 255.0, Size(), Scalar(), true);
processNet("dnn/yolov3.onnx", "", inp);
}