OpenCV  4.10.0
开源计算机视觉库
正在加载...
正在搜索...
无匹配项
samples/tapi/hog.cpp
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <iomanip>
#include <stdexcept>
using namespace std;
using namespace cv;
class App
{
public:
void run();
void handleKey(char key);
void hogWorkBegin();
void hogWorkEnd();
string hogWorkFps() const;
void workBegin();
void workEnd();
string workFps() const;
private:
App operator=(App&);
//Args args;
bool running;
bool make_gray;
double scale;
double resize_scale;
int win_width;
int win_stride_width, win_stride_height;
int gr_threshold;
int nlevels;
double hit_threshold;
bool gamma_corr;
int64 hog_work_begin;
double hog_work_fps;
int64 work_begin;
double work_fps;
string img_source;
string vdo_source;
string output;
int camera_id;
bool write_once;
};
int main(int argc, char** argv)
{
const char* keys =
"{ h help | | 打印帮助信息 }"
"{ i input | | 指定输入图像}"
"{ c camera | -1 | 启用摄像头捕获 }"
"{ v video | vtest.avi | 使用视频作为输入 }"
"{ g gray | | 是否将图像转换为灰度图像}"
"{ s scale | 1.0 | 检测前调整图像大小}"
"{ o output | output.avi | 当输入为图像时,指定输出路径}";
CommandLineParser cmd(argc, argv, keys);
if (cmd.has("help"))
{
cmd.printMessage();
return EXIT_SUCCESS;
}
App app(cmd);
try
{
app.run();
}
catch (const Exception& e)
{
return cout << "error: " << e.what() << endl, 1;
}
catch (const exception& e)
{
return cout << "error: " << e.what() << endl, 1;
}
catch(...)
{
return cout << "unknown exception" << endl, 1;
}
return EXIT_SUCCESS;
}
App::App(CommandLineParser& cmd)
{
cout << "\n控制:\n"
<< "\tESC - 退出\n"
<< "\tm - 切换模式 GPU <-> CPU\n"
<< "\tg - 是否将图像转换为灰度图像\n"
<< "\to - 一次保存输出图像,或切换视频保存的开关\n"
<< "\t1/q - 增加/减少 HOG 比例\n"
<< "\t2/w - 增加/减少层数\n"
<< "\t3/e - 增加/减少 HOG 组阈值\n"
<< "\t4/r - 增加/减少命中阈值\n"
<< endl;
make_gray = cmd.has("gray");
resize_scale = cmd.get<double>("s");
vdo_source = samples::findFileOrKeep(cmd.get<string>("v"));
img_source = cmd.get<string>("i");
output = cmd.get<string>("o");
camera_id = cmd.get<int>("c");
win_width = 48;
win_stride_width = 8;
win_stride_height = 8;
gr_threshold = 8;
nlevels = 13;
hit_threshold = 1.4;
scale = 1.05;
gamma_corr = true;
write_once = false;
cout << "组阈值: " << gr_threshold << endl;
cout << "层数: " << nlevels << endl;
cout << "窗口宽度: " << win_width << endl;
cout << "窗口步长: (" << win_stride_width << ", " << win_stride_height << ")\n";
cout << "命中阈值: " << hit_threshold << endl;
cout << "伽马校正: " << gamma_corr << endl;
cout << endl;
}
void App::run()
{
running = true;
VideoWriter video_writer;
Size win_size(win_width, win_width * 2);
Size win_stride(win_stride_width, win_stride_height);
// 在这里创建 HOG 描述符和检测器
HOGDescriptor hog(win_size, Size(16, 16), Size(8, 8), Size(8, 8), 9, 1, -1,
HOGDescriptor::L2Hys, 0.2, gamma_corr, cv::HOGDescriptor::DEFAULT_NLEVELS);
hog.setSVMDetector( HOGDescriptor::getDaimlerPeopleDetector() );
while (running)
{
UMat frame;
if (vdo_source!="")
{
vc.open(vdo_source.c_str());
if (!vc.isOpened())
throw runtime_error(string("无法打开视频文件: " + vdo_source));
vc >> frame;
}
else if (camera_id != -1)
{
vc.open(camera_id);
if (!vc.isOpened())
{
stringstream msg;
msg << "无法打开摄像头: " << camera_id;
throw runtime_error(msg.str());
}
vc >> frame;
}
else
{
imread(img_source).copyTo(frame);
if (frame.empty())
throw runtime_error(string("无法打开图像文件: " + img_source));
}
UMat img_aux, img, img_to_show;
// 遍历所有帧
while (running && !frame.empty())
{
workBegin();
// 更改图像格式
if (make_gray) cvtColor(frame, img_aux, COLOR_BGR2GRAY );
else frame.copyTo(img_aux);
// 调整图像大小
if (abs(scale-1.0)>0.001)
{
Size sz((int)((double)img_aux.cols/resize_scale), (int)((double)img_aux.rows/resize_scale));
resize(img_aux, img, sz, 0, 0, INTER_LINEAR_EXACT);
}
else img = img_aux;
img.copyTo(img_to_show);
hog.nlevels = nlevels;
vector<Rect> found;
// 执行 HOG 分类
hogWorkBegin();
hog.detectMultiScale(img, found, hit_threshold, win_stride,
Size(0, 0), scale, gr_threshold);
hogWorkEnd();
// 绘制正分类窗口
for (size_t i = 0; i < found.size(); i++)
{
rectangle(img_to_show, found[i], Scalar(0, 255, 0), 3);
}
putText(img_to_show, ocl::useOpenCL() ? "模式: OpenCL" : "模式: CPU", Point(5, 25), FONT_HERSHEY_SIMPLEX, 1., Scalar(255, 100, 0), 2);
putText(img_to_show, "FPS (仅 HOG): " + hogWorkFps(), Point(5, 65), FONT_HERSHEY_SIMPLEX, 1., Scalar(255, 100, 0), 2);
putText(img_to_show, "FPS (总计): " + workFps(), Point(5, 105), FONT_HERSHEY_SIMPLEX, 1., Scalar(255, 100, 0), 2);
imshow("opencv_hog", img_to_show);
如果 (vdo_source!="" || camera_id!=-1) vc >> frame;
workEnd();
如果 (output!="" && write_once)
{
如果 (img_source!="") // 写入图像
{
write_once = false;
imwrite(output, img_to_show);
}
否则 // 写入视频
{
如果 (!video_writer.isOpened())
{
video_writer.open(output, VideoWriter::fourcc('x','v','i','d'), 24,
img_to_show.size(), true);
如果 (!video_writer.isOpened())
抛出 std::runtime_error("无法创建视频写入器");
}
如果 (make_gray) cvtColor(img_to_show, img, COLOR_GRAY2BGR);
否则 cvtColor(img_to_show, img, COLOR_BGRA2BGR);
video_writer << img;
}
}
handleKey((char)waitKey(3));
}
}
}
void App::handleKey(char key)
{
switch (key)
{
case 27:
running = false;
break;
case 'm'
case 'M'
ocl::setUseOpenCL(!cv::ocl::useOpenCL());
cout << "已切换到 " << (ocl::useOpenCL() ? "已启用 OpenCL" : "CPU") << " 模式\n";
break;
case 'g'
case 'G'
make_gray = !make_gray;
cout << "将图像转换为灰度: " << (make_gray ? "是" : "否") << endl;
break;
case '1'
scale *= 1.05;
cout << "缩放比例: " << scale << endl;
break;
case 'q'
case 'Q'
scale /= 1.05;
cout << "缩放比例: " << scale << endl;
break;
case '2'
nlevels++;
cout << "层数: " << nlevels << endl;
break;
case 'w'
case 'W'
nlevels = max(nlevels - 1, 1);
cout << "层数: " << nlevels << endl;
break;
case '3'
gr_threshold++;
cout << "组阈值: " << gr_threshold << endl;
break;
case 'e'
case 'E'
gr_threshold = max(0, gr_threshold - 1);
cout << "组阈值: " << gr_threshold << endl;
break;
case '4'
hit_threshold+=0.25;
cout << "命中阈值: " << hit_threshold << endl;
break;
case 'r'
case 'R'
hit_threshold = max(0.0, hit_threshold - 0.25);
cout << "命中阈值: " << hit_threshold << endl;
break;
case 'c'
case 'C'
gamma_corr = !gamma_corr;
cout << "伽马校正: " << gamma_corr << endl;
break;
case 'o'
case 'O'
write_once = !write_once;
break;
}
}
inline void App::hogWorkBegin()
{
hog_work_begin = getTickCount();
}
inline void App::hogWorkEnd()
{
int64 delta = getTickCount() - hog_work_begin;
double freq = getTickFrequency();
hog_work_fps = freq / delta;
}
inline string App::hogWorkFps() const
{
stringstream ss;
ss << hog_work_fps;
返回 ss.str();
}
inline void App::workBegin()
{
work_begin = getTickCount();
}
inline void App::workEnd()
{
int64 delta = getTickCount() - work_begin;
double freq = getTickFrequency();
work_fps = freq / delta;
}
inline string App::workFps() const
{
stringstream ss;
ss << work_fps;
返回 ss.str();
}
用于命令行解析。
定义 utility.hpp:820
T get(const String &name, bool space_delete=true) const
按名称访问参数。
定义 utility.hpp:886
bool has(const String &name) const
检查命令行中是否提供了字段。
传递给错误的类。
定义 core.hpp:115
virtual const char * what() const CV_OVERRIDE
void copyTo(OutputArray m) const
将矩阵复制到另一个矩阵。
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
定义 mat.hpp:2433
int cols
矩阵中的列数;当矩阵具有超过两个维度时为 -1
定义 mat.hpp:2623
MatSize size
矩阵的维度大小;可以在各种格式中访问
定义 mat.hpp:2644
int rows
矩阵中的行数;当矩阵具有超过两个维度时为 -1
定义 mat.hpp:2620
bool empty() const
如果矩阵数据为 NULL,则返回 true
void copyTo(OutputArray m) const
将矩阵内容复制到 "m"。
用于从视频文件、图像序列或摄像头捕获视频的类。
定义 videoio.hpp:731
virtual bool open(const String &filename, int apiPreference=CAP_ANY)
打开视频文件或捕获设备或 IP 视频流进行视频捕获。
virtual bool isOpened() const
如果已初始化视频捕获,则返回 true。
视频写入器类。
定义 videoio.hpp:1009
virtual bool open(const String &filename, int fourcc, double fps, Size frameSize, bool isColor=true)
初始化或重新初始化视频写入器。
virtual bool isOpened() const
如果视频写入器已成功初始化,则返回 true。
void max(InputArray src1, InputArray src2, OutputArray dst)
计算两个数组或数组和标量之间的逐元素最大值。
int64_t int64
定义 interface.h:61
bool useOpenCL()
softfloat abs(softfloat a)
绝对值。
定义 softfloat.hpp:444
double getTickFrequency()
返回每秒的滴答次数。
int64 getTickCount()
返回滴答次数。
void imshow(const String &winname, InputArray mat)
在指定窗口中显示图像。
int waitKey(int delay=0)
等待按键按下。
CV_EXPORTS_W bool imwrite(const String &filename, InputArray img, const std::vector< int > &params=std::vector< int >())
将图像保存到指定文件。
CV_EXPORTS_W Mat imread(const String &filename, int flags=IMREAD_COLOR)
从文件加载图像。
void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0)
将图像从一种颜色空间转换为另一种颜色空间。
void rectangle(InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
绘制简单的、粗的或填充的直立矩形。
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)
绘制文本字符串。
@ FONT_HERSHEY_SIMPLEX
正常大小的无衬线字体
定义 imgproc.hpp:901
void resize(InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation=INTER_LINEAR)
调整图像大小。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
void scale(cv::Mat &mat, const cv::Mat &range, const T min, const T max)
定义 quality_utils.hpp:90
与磁盘上的文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102
STL 命名空间。
HOG (方向梯度直方图) 描述符和目标检测器的实现。
定义 objdetect.hpp:403
@ DEFAULT_NLEVELS
默认的 nlevels 值。
定义 objdetect.hpp:407