OpenCV 4.11.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 << "错误: " << e.what() << endl, 1;
}
catch (const exception& e)
{
return cout << "错误: " << e.what() << endl, 1;
}
catch(...)
{
return cout << "未知异常" << 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() );
当 running 为真时
{
UMat frame;
如果 vdo_source 不为空字符串
{
vc.open(vdo_source.c_str());
如果 !vc.isOpened()
抛出 runtime_error 异常 ("无法打开视频文件: " + vdo_source);
vc >> frame;
}
否则如果 camera_id 不等于 -1
{
vc.open(camera_id);
如果 !vc.isOpened()
{
stringstream msg;
msg << "无法打开摄像头: " << camera_id;
抛出 runtime_error 异常(msg.str());
}
vc >> frame;
}
否则
{
imread(img_source).copyTo(frame);
如果 frame.empty()
抛出 runtime_error 异常 ("无法打开图像文件: " + img_source);
}
UMat img_aux, img, img_to_show;
// 迭代所有帧
当 running 为真且 !frame.empty() 时
{
workBegin();
// 改变图像格式
如果 make_gray 为真 cvtColor(frame, img_aux, COLOR_BGR2GRAY );
否则 frame.copyTo(img_aux);
// 调整图像大小
如果 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);
}
否则 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();
// 绘制正分类窗口
对于 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)
{
根据 key 的值执行以下操作
{
情况 27:
running = false;
break;
情况 'm'
情况 'M'
ocl::setUseOpenCL(!cv::ocl::useOpenCL());
cout << "已切换到 " << (ocl::useOpenCL() ? "OpenCL 已启用" : "CPU") << " 模式\n";
break;
case 'g'
case 'G'
make_gray = !make_gray;
cout << "将图像转换为灰度: " << (make_gray ? "YES" : "NO") << 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;
return 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;
return ss.str();
}
用于命令行解析。
定义 utility.hpp:890
T get(const String &name, bool space_delete=true) const
按名称访问参数。
定义 utility.hpp:956
bool has(const String &name) const
检查命令行中是否提供了字段。
传递给错误的类。
定义 core.hpp:120
virtual const char * what() const noexcept override
void copyTo(OutputArray m) const
将矩阵复制到另一个矩阵。
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
定义 mat.hpp:2450
int cols
矩阵中的列数;当矩阵维数超过2时为-1
定义 mat.hpp:2640
MatSize size
矩阵的维度大小;可以通过各种格式访问
定义 mat.hpp:2661
int rows
矩阵中的行数;当矩阵维数超过2时为-1
定义 mat.hpp:2637
bool empty() const
如果矩阵数据为NULL,则返回true
void copyTo(OutputArray m) const
将矩阵内容复制到“m”。
用于从视频文件、图像序列或摄像头捕获视频的类。
定义 videoio.hpp:766
virtual bool open(const String &filename, int apiPreference=CAP_ANY)
打开视频文件或捕获设备或IP视频流以进行视频捕获。
virtual bool isOpened() const
如果视频捕获已初始化,则返回true。
视频写入器类。
定义 videoio.hpp:1065
virtual bool open(const String &filename, int fourcc, double fps, Size frameSize, bool isColor=true)
初始化或重新初始化视频写入器。
virtual bool isOpened() const
如果视频写入器已成功初始化,则返回true。
int64_t int64
定义 interface.h:61
bool useOpenCL()
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_BGR)
从文件加载图像。
void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0, AlgorithmHint hint=cv::ALGO_HINT_DEFAULT)
将图像从一个颜色空间转换为另一个颜色空间。
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)
绘制文本字符串。
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:107
STL 命名空间。
HOG(定向梯度直方图)描述符和目标检测器的实现。
定义 objdetect.hpp:403
@ DEFAULT_NLEVELS
默认的 nlevels 值。
定义 objdetect.hpp:407