OpenCV  4.10.0
开源计算机视觉库
正在加载...
正在搜索...
没有匹配项
samples/cpp/camshiftdemo.cpp

使用均值漂移跟踪算法的示例

#include <iostream>
#include <ctype.h>
using namespace cv;
using namespace std;
Mat image;
bool backprojMode = false;
bool selectObject = false;
int trackObject = 0;
bool showHist = true;
Point origin;
Rect selection;
int vmin = 10, vmax = 256, smin = 30;
// 用户在要跟踪的对象周围绘制方框。这将触发 CAMShift 开始跟踪
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);
selection &= Rect(0, 0, image.cols, image.rows);
}
switch( event )
{
case EVENT_LBUTTONDOWN
origin = Point(x,y);
selection = Rect(x,y,0,0);
selectObject = true;
break;
case EVENT_LBUTTONUP
selectObject = false;
if( selection.width > 0 && selection.height > 0 )
trackObject = -1; // 在 main() 循环中设置 CAMShift 属性
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 )
{
Rect trackWindow;
int hsize = 16;
float hranges[] = {0,180};
const float* phranges = hranges;
CommandLineParser parser(argc, argv, keys);
if (parser.has("help"))
{
help(argv);
return 0;
}
int camNum = parser.get<int>(0);
cap.open(camNum);
if( !cap.isOpened() )
{
help(argv);
cout << "***无法初始化捕获...***\n";
cout << "当前参数值:\n";
parser.printMessage();
return -1;
}
cout << hot_keys;
namedWindow( "Histogram", 0 );
namedWindow( "CamShift Demo", 0 );
setMouseCallback( "CamShift Demo", onMouse, 0 );
createTrackbar( "Vmin", "CamShift Demo", &vmin, 256, 0 );
createTrackbar( "Vmax", "CamShift Demo", &vmax, 256, 0 );
createTrackbar( "Smin", "CamShift Demo", &smin, 256, 0 );
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;
}
frame.copyTo(image);
if( !paused )
{
cvtColor(image, hsv, COLOR_BGR2HSV);
if( trackObject )
{
int _vmin = vmin, _vmax = vmax;
inRange(hsv, Scalar(0, smin, MIN(_vmin,_vmax)),
Scalar(180, 256, MAX(_vmin, _vmax)), mask);
int ch[] = {0, 0};
hue.create(hsv.size(), hsv.depth());
mixChannels(&hsv, 1, &hue, 1, ch, 1);
if( trackObject < 0 )
{
// 对象已被用户选中,仅在一次设置 CAMShift 搜索属性
Mat roi(hue, selection), maskroi(mask, selection);
calcHist(&roi, 1, 0, maskroi, hist, 1, &hsize, &phranges);
normalize(hist, hist, 0, 255, NORM_MINMAX);
trackWindow = selection;
trackObject = 1; // 不要再次设置,除非用户选择新的 ROI
histimg = Scalar::all(0);
int binW = histimg.cols / hsize;
Mat buf(1, hsize, CV_8UC3);
for( int i = 0; i < hsize; i++ )
buf.at<Vec3b>(i) = Vec3b(saturate_cast<uchar>(i*180./hsize), 255, 255);
cvtColor(buf, buf, COLOR_HSV2BGR);
for( int i = 0; i < hsize; i++ )
{
int val = saturate_cast<int>(hist.at<float>(i)*histimg.rows/255);
rectangle( histimg, Point(i*binW,histimg.rows),
Point((i+1)*binW,histimg.rows - val),
Scalar(buf.at<Vec3b>(i)), -1, 8 );
}
}
// 执行 CAMShift
calcBackProject(&hue, 1, 0, hist, backproj, &phranges);
backproj &= mask;
RotatedRect trackBox = CamShift(backproj, trackWindow,
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) &
Rect(0, 0, cols, rows);
}
if( backprojMode )
cvtColor( backproj, image, COLOR_GRAY2BGR );
ellipse( image, trackBox, Scalar(0,0,255), 3, LINE_AA );
}
}
else if( trackObject < 0 )
paused = false;
if( selectObject && selection.width > 0 && selection.height > 0 )
{
Mat roi(image, selection);
bitwise_not(roi, roi);
}
imshow( "CamShift Demo", image );
imshow( "Histogram", histimg );
char c = (char)waitKey(10);
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 )
destroyWindow( "Histogram" );
else
namedWindow( "Histogram", 1 );
break;
case 'p'
paused = !paused;
break;
default:
;
}
}
return 0;
}
用于命令行解析的实用程序。
定义 utility.hpp:820
n 维密集数组类
定义 mat.hpp:812
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 cols
定义 mat.hpp:2138
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
STL 命名空间。