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

dnn: updated YOLOv4-tiny model and tests

This commit is contained in:
Maksim Shabunin
2022-12-21 15:37:14 +03:00
parent 91ac790249
commit d35fbe6bfc
3 changed files with 23 additions and 22 deletions
+1 -1
View File
@@ -251,7 +251,7 @@ PERF_TEST_P_(DNNTestNetwork, YOLOv4_tiny)
cvtColor(sample, sample, COLOR_BGR2RGB);
Mat inp;
sample.convertTo(inp, CV_32FC3, 1.0f / 255, 0);
processNet("dnn/yolov4-tiny.weights", "dnn/yolov4-tiny.cfg", "", inp);
processNet("dnn/yolov4-tiny-2020-12.weights", "dnn/yolov4-tiny-2020-12.cfg", "", inp);
}
PERF_TEST_P_(DNNTestNetwork, EAST_text_detection)