@@ -341,7 +341,7 @@ std::string YoloFeatureManager::Class(cv::Mat & image)
// 在画面上绘制分类结果
std::wstring resultText = CLewaimaiString::ANSIToUnicode(className) + L" : " + std::to_wstring(round(topConfidence * 10000) / 100) + L"%";
this->drawChineseText(image, resultText.c_str(), cv::Point(20, 50), cv::Scalar(0, 255, 0), 24);
- cv::imshow("YOLOv8s-cls 实时图像分类", image);
+ cv::imshow("yolo26n-cls 实时图像分类", image);
if (cv::waitKey(30) >= 0); // 按任意键退出
return className;