尝试初始化暗网时出现此错误。
错误: cv::dnn::darknet::ReadDarknetFromCfgStream 中的断言失败 (separator_index < line.size()),文件 c:\build\master_winpack-build-win64-vc15\opencv\modules\dnn\src\darknet\darknet_io .cpp,第 507 行
有谁知道可能会发生什么?
我正在使用yolov3.weights
和yolov3.cfg
下面的一段代码。
我试过绝对文件路径
// Load names of classes
string classesFile = "B:/coco.names";
ifstream ifs(classesFile.c_str());
string line;
while (getline(ifs, line)) classes.push_back(line);
// Give the configuration and weight files for the model
String modelConfiguration = "B:/yolov3a.cfg";
String modelWeights = "B:/yolov3.weights";
// Load the network
Net net = readNetFromDarknet(modelConfiguration, modelWeights);
net.setPreferableBackend(DNN_BACKEND_OPENCV);
net.setPreferableTarget(DNN_TARGET_CPU);
//---------------
return 0;
任何帮助表示赞赏