From d8e18f4576654492c78125bafdf5179692aa44ad Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Fri, 3 May 2024 16:14:22 +0300 Subject: [PATCH] Made fcn-resnet50-12.onnx model optional. --- modules/dnn/test/test_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dnn/test/test_model.cpp b/modules/dnn/test/test_model.cpp index 1a533f6a3f..902526930f 100644 --- a/modules/dnn/test/test_model.cpp +++ b/modules/dnn/test/test_model.cpp @@ -676,7 +676,7 @@ TEST_P(Test_Model, Segmentation) } std::string inp = _tf("dog416.png"); - std::string weights_file = _tf("onnx/models/fcn-resnet50-12.onnx"); + std::string weights_file = _tf("onnx/models/fcn-resnet50-12.onnx", false); std::string exp = _tf("segmentation_exp.png"); Size size{128, 128};