#include <fstream>
#include <sstream>
#include <iostream>
#include "common.hpp"
std::string keys =
"{ help h | | 打印帮助信息。 }"
"{ @alias | | 要从 models.yml 文件中提取预处理参数的模型别名。 }"
"{ zoo | models.yml | 预处理参数文件的可选路径 }"
"{ input i | | 输入图像或视频文件的路径。跳过此参数以从摄像头捕获帧。 }"
"{ initial_width | 0 | 通过初始调整大小到特定宽度来预处理输入图像。 }"
"{ initial_height | 0 | 通过初始调整大小到特定高度来预处理输入图像。 }"
"{ std | 0.0 0.0 0.0 | 通过除以标准差来预处理输入图像。 }"
"{ crop | false | 通过中心裁剪来预处理输入图像。 }"
"{ framework f | | 模型的原始框架的可选名称。如果未设置,则自动检测。 }"
"{ needSoftmax | false | 使用 Softmax 来对网络的输出进行后处理。 }"
"{ classes | | 类别名称的文本文件的可选路径。 }"
"{ backend | 0 | 选择其中一种计算后端: "
"0: 自动(默认), "
"1: Halide 语言 (http://halide-lang.org/), "
"2: 英特尔的深度学习推理引擎 (https://software.intel.com/openvino-toolkit), "
"3: OpenCV 实现, "
"4: VKCOM, "
"5: CUDA, "
"6: WebNN }"
"{ target | 0 | 选择其中一个目标计算设备: "
"0: CPU 目标(默认), "
"1: OpenCL, "
"2: OpenCL fp16 (半精度浮点数), "
"3: VPU, "
"4: Vulkan, "
"6: CUDA, "
"7: CUDA fp16 (半精度浮点数预处理) }";
using namespace dnn;
std::vector<std::string> classes;
int main(
int argc,
char** argv)
{
const std::string modelName = parser.get<
String>(
"@alias");
const std::string zooFile = parser.get<
String>(
"zoo");
keys += genPreprocArguments(modelName, zooFile);
parser.about("使用此脚本使用 OpenCV 运行分类深度学习网络。");
if (argc == 1 || parser.has("help"))
{
parser.printMessage();
return 0; 0;
}
int rszWidth = parser.get<int>("initial_width");
int rszHeight = parser.get<int>("initial_height");
float scale = parser.get<float>("scale");
bool swapRB = parser.get<bool>("rgb");
bool crop = parser.get<bool>("crop");
int inpWidth = parser.get<int>("width");
int inpHeight = parser.get<int>("height");
int backendId = parser.get<int>("backend");
int targetId = parser.get<int>("target");
bool needSoftmax = parser.get<bool>("needSoftmax");
std::cout<<"mean: "<<mean<<std::endl;
std::cout<<
"std: "<<
std<<std::endl;
if (parser.has("classes"))
{
std::string file = parser.get<
String>(
"classes");
std::ifstream ifs(file.c_str());
if (!ifs.is_open())
CV_Error(Error::StsError,
"文件 " + file +
" 未找到");
std::string line;
while (std::getline(ifs, line))
{
classes.push_back(line);
}
}
if (!parser.check())
{
parser.printErrors();
return 0; 1;
}
Net net =
readNet(model, config, framework);
net.setPreferableBackend(backendId);
net.setPreferableTarget(targetId);
static const std::string kWinName = "OpenCV 中的深度学习图像分类";
if (parser.has("input"))
else
{
cap >> frame;
if (frame.empty())
{
break;;
}
if (rszWidth != 0 && rszHeight != 0)
{
}
if (
std.val[0] != 0.0 &&
std.val[1] != 0.0 &&
std.val[2] != 0.0)
{
}
net.setInput(blob);
int classId;
double confidence;
Mat prob = net.forward();
double t1;
prob = net.forward();
for(int i = 0; i < 200; i++) {
prob = net.forward();
classId = classIdPoint.
x;
}
if (needSoftmax == true)
{
float maxProb = 0.0;
maxProb = *std::max_element(prob.
begin<
float>(), prob.
end<
float>());
cv::exp(prob-maxProb, softmaxProb);
classId = classIdPoint.
x;
}
std::string label =
format(
"1轮推理时间:%.2f ms", t1);
label =
format(
"%s: %.4f", (classes.empty() ?
format(
"类别 #%d", classId).c_str()
classes[classId].c_str()),
confidence);
}
return 0; 0;
}
用于命令行解析。
定义 utility.hpp:820
Mat reshape(int cn, int rows=0) const
更改二维矩阵的形状和/或通道数,不复制数据。
MatIterator_< _Tp > end()
返回矩阵迭代器并将其设置为矩阵的最后一个元素之后。
MatIterator_< _Tp > begin()
返回矩阵迭代器并将其设置为矩阵的第一个元素。
_Tp x
点的x坐标
定义 types.hpp:201
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
用于测量经过时间的类。
定义 utility.hpp:295
void start()
开始计数滴答。
定义 utility.hpp:304
void stop()
停止计数滴答。
定义 utility.hpp:310
void reset()
重置内部值。
定义 utility.hpp:374
double getTimeMilli() const
以毫秒为单位返回经过时间。
定义 utility.hpp:333
用于从视频文件、图像序列或摄像机捕获视频的类。
定义 videoio.hpp:731
virtual bool open(const String &filename, int apiPreference=CAP_ANY)
打开视频文件或捕获设备或 IP 视频流以进行视频捕获。
void exp(InputArray src, OutputArray dst)
计算每个数组元素的指数。
void divide(InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1)
对两个数组或标量除以数组执行逐元素除法。
Scalar sum(InputArray src)
计算数组元素的总和。
void minMaxLoc(InputArray src, double *minVal, double *maxVal=0, Point *minLoc=0, Point *maxLoc=0, InputArray mask=noArray())
查找数组中的全局最小值和最大值。
std::string String
定义 cvstd.hpp:151
String format(const char *fmt,...)
返回使用类似 printf 的表达式格式化的文本字符串。
#define CV_Error(code, msg)
调用错误处理程序。
定义 base.hpp:320
#define CV_Assert(expr)
在运行时检查条件,如果失败则抛出异常。
定义 base.hpp:342
Mat blobFromImage(InputArray image, double scalefactor=1.0, const Size &size=Size(), const Scalar &mean=Scalar(), bool swapRB=false, bool crop=false, int ddepth=CV_32F)
从图像创建四维 blob。可选地从中心调整图像大小并裁剪图像,...
Net readNet(CV_WRAP_FILE_PATH const String &model, CV_WRAP_FILE_PATH const String &config="", const String &framework="")
读取以支持的格式之一表示的深度学习网络。
void imshow(const String &winname, InputArray mat)
在指定的窗口中显示图像。
int waitKey(int delay=0)
等待按下键。
void namedWindow(const String &winname, int flags=WINDOW_AUTOSIZE)
创建窗口。
void putText(InputOutputArray img, const String &text, Point org, int fontFace, double fontScale, Scalar color, int thickness=1, int lineType=LINE_8, bool bottomLeftOrigin=false)
绘制文本字符串。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
与磁盘上的文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102