#include <iostream>
#include <ctype.h>
bool backprojMode = false;
bool selectObject = false;
int trackObject = 0;
bool showHist = true;
static void onMouse( int event, int x, int y, int, void* )
{
if( selectObject )
{
selection.
x =
MIN(x, origin.
x);
selection.
y =
MIN(y, origin.
y);
selection.
width = std::abs(x - origin.
x);
selection.
height = std::abs(y - origin.
y);
}
switch( event )
{
case EVENT_LBUTTONDOWN
selection =
Rect(x,y,0,0);
selectObject = true;
break;
case EVENT_LBUTTONUP
selectObject = false;
trackObject = -1;
break;
}
}
string hot_keys =
"\n\n热键:\n"
"\tESC - 退出程序\n"
"\tc - 停止跟踪\n"
"\tb - 切换到/从反向投影视图\n"
"\th - 显示/隐藏对象直方图\n"
"\tp - 暂停视频\n"
"要初始化跟踪,请使用鼠标选择对象\n";
static void help(const char** argv)
{
cout << "\n这是一个演示,展示了基于均值漂移的跟踪\n"
"您可以选择彩色对象,例如您的脸部,它会跟踪它。\n"
"这从视频摄像头读取(默认值为 0,或者用户输入的摄像头编号\n"
"用法:\n\t";
cout << argv[0] << " [摄像头编号]\n";
cout << hot_keys;
}
const char* keys =
{
"{help h | | 显示帮助信息}{@camera_number| 0 | 摄像头编号}"
};
int main(
int argc,
const char** argv )
{
int hsize = 16;
float hranges[] = {0,180};
const float* phranges = hranges;
if (parser.has("help"))
{
help(argv);
return 0;
}
int camNum = parser.get<int>(0);
{
help(argv);
cout << "***无法初始化捕获...***\n";
cout << "当前参数值:\n";
parser.printMessage();
return -1;
}
cout << hot_keys;
Mat frame, hsv, hue,
mask, hist, histimg = Mat::zeros(200, 320,
CV_8UC3), backproj;
bool paused = false;
for(;;)
{
if( !paused )
{
cap >> frame;
if( frame.empty() )
break;
}
if( !paused )
{
if( trackObject )
{
int ch[] = {0, 0};
if( trackObject < 0 )
{
Mat roi(hue, selection), maskroi(mask, selection);
calcHist(&roi, 1, 0, maskroi, hist, 1, &hsize, &phranges);
trackWindow = selection;
trackObject = 1;
histimg = Scalar::all(0);
int binW = histimg.
cols / hsize;
for( int i = 0; i < hsize; i++ )
buf.at<
Vec3b>(i) =
Vec3b(saturate_cast<uchar>(i*180./hsize), 255, 255);
for( int i = 0; i < hsize; i++ )
{
int val = saturate_cast<int>(hist.
at<
float>(i)*histimg.
rows/255);
}
}
TermCriteria( TermCriteria::EPS | TermCriteria::COUNT, 10, 1 ));
if( trackWindow.
area() <= 1 )
{
int cols = backproj.cols, rows = backproj.rows, r = (
MIN(cols, rows) + 5)/6;
trackWindow =
Rect(trackWindow.
x - r, trackWindow.
y - r,
trackWindow.
x + r, trackWindow.
y + r) &
}
if( backprojMode )
cvtColor( backproj, image, COLOR_GRAY2BGR );
}
}
else if( trackObject < 0 )
paused = false;
if( selectObject && selection.
width > 0 && selection.
height > 0 )
{
Mat roi(image, selection);
}
imshow(
"CamShift Demo", image );
imshow(
"Histogram", histimg );
if( c == 27 )
break;
switch(c)
{
case 'b'
backprojMode = !backprojMode;
break;
case 'c'
trackObject = 0;
histimg = Scalar::all(0);
break;
case 'h'
showHist = !showHist;
if( !showHist )
else
break;
case 'p'
paused = !paused;
break;
default:
;
}
}
return 0;
}
用于命令行解析的实用程序。
定义 utility.hpp:820
MatSize size
定义 mat.hpp:2160
void copyTo(OutputArray m) const
将矩阵复制到另一个矩阵。
void create(int rows, int cols, int type)
如果需要,分配新的数组数据。
int depth() const
返回矩阵元素的深度。
_Tp & at(int i0=0)
返回对指定数组元素的引用。
int rows
行和列的数量,或当矩阵具有超过 2 个维度时为 (-1, -1)
定义 mat.hpp:2138
_Tp y
点的 y 坐标
定义 types.hpp:202
_Tp x
点的 x 坐标
定义 types.hpp:201
二维矩形的模板类。
定义 types.hpp:444
_Tp area() const
矩形的面积(宽度*高度)
_Tp x
左上角的 x 坐标
定义 types.hpp:480
_Tp y
左上角的 y 坐标
定义 types.hpp:481
_Tp width
矩形的宽度
定义 types.hpp:482
_Tp height
矩形的高度
定义 types.hpp:483
此类表示平面上的旋转(即非直立)矩形。
定义 types.hpp:531
定义迭代算法终止条件的类。
定义 types.hpp:886
短数值向量的模板类,是 Matx 的特例。
定义 matx.hpp:369
用于从视频文件、图像序列或相机捕获视频的类。
定义 videoio.hpp:731
virtual bool open(const String &filename, int apiPreference=CAP_ANY)
打开视频文件或捕获设备或 IP 视频流以进行视频捕获。
virtual bool isOpened() const
如果视频捕获已初始化,则返回 true。
void bitwise_not(InputArray src, OutputArray dst, InputArray mask=noArray())
反转数组的每一位。
void inRange(InputArray src, InputArray lowerb, InputArray upperb, OutputArray dst)
检查数组元素是否位于另外两个数组的元素之间。
void mixChannels(const Mat *src, size_t nsrcs, Mat *dst, size_t ndsts, const int *fromTo, size_t npairs)
将指定通道从输入数组复制到输出数组的指定通道。
void normalize(InputArray src, InputOutputArray dst, double alpha=1, double beta=0, int norm_type=NORM_L2, int dtype=-1, InputArray mask=noArray())
规范化数组的范数或值范围。
#define CV_8UC3
定义 interface.h:90
#define MIN(a, b)
定义 cvdef.h:513
#define MAX(a, b)
定义 cvdef.h:517
GMat mask(const GMat &src, const GMat &mask)
将掩码应用于矩阵。
void imshow(const String &winname, InputArray mat)
在指定窗口中显示图像。
int waitKey(int delay=0)
等待按下键。
void namedWindow(const String &winname, int flags=WINDOW_AUTOSIZE)
创建窗口。
void destroyWindow(const String &winname)
销毁指定的窗口。
void setMouseCallback(const String &winname, MouseCallback onMouse, void *userdata=0)
为指定窗口设置鼠标处理程序。
int createTrackbar(const String &trackbarname, const String &winname, int *value, int count, TrackbarCallback onChange=0, void *userdata=0)
创建滑块并将其附加到指定窗口。
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 ellipse(InputOutputArray img, Point center, Size axes, double angle, double startAngle, double endAngle, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
绘制简单或粗的椭圆弧或填充椭圆扇区。
void calcBackProject(const Mat *images, int nimages, const int *channels, InputArray hist, OutputArray backProject, const float **ranges, double scale=1, bool uniform=true)
计算直方图的反向投影。
void calcHist(const Mat *images, int nimages, const int *channels, InputArray mask, OutputArray hist, int dims, const int *histSize, const float **ranges, bool uniform=true, bool accumulate=false)
计算一组数组的直方图。
RotatedRect CamShift(InputArray probImage, Rect &window, TermCriteria criteria)
找到目标中心、大小和方向。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
#define vmax(...)
定义 intrin_rvv_010_compat_overloaded-non-policy.hpp:338
#define vmin(...)
定义 intrin_rvv_010_compat_overloaded-non-policy.hpp:337
与磁盘上文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102