#include <iostream>
static void help(const char** argv)
{
cout << "\n此程序演示使用 cv::CascadeClassifier 类检测物体(面部 + 眼睛)。你可以使用 Haar 或 LBP 特征。\n"
"此分类器可以识别很多种刚性物体,一旦训练了合适的分类器。\n"
"它最知名的用途是人脸。\n"
"用法:\n"
<< argv[0]
<< " [--cascade=<cascade_path> 这是主要训练分类器,例如正脸]\n"
" [--nested-cascade[=nested_cascade_path 这一个可选的辅助分类器,例如眼睛]]\n"
" [--scale=<图像缩放大于或等于 1,例如尝试 1.3>]\n"
" [--try-flip]\n"
" [文件名|摄像头索引]\n\n"
"示例:\n"
<< argv[0]
<< " --cascade=\"data/haarcascades/haarcascade_frontalface_alt.xml\" --nested-cascade=\"data/haarcascades/haarcascade_eye_tree_eyeglasses.xml\" --scale=1.3\n\n"
"执行期间:\n\t按任意键退出。\n"
"\t正在使用 OpenCV 版本 " <<
CV_VERSION <<
"\n" << endl;
}
double scale, bool tryflip );
string cascadeName;
string nestedCascadeName;
int main(
int argc,
const char** argv )
{
string inputName;
bool tryflip;
double scale;
"{help h||}"
"{cascade|data/haarcascades/haarcascade_frontalface_alt.xml|}"
"{nested-cascade|data/haarcascades/haarcascade_eye_tree_eyeglasses.xml|}"
"{scale|1|}{try-flip||}{@filename||}"
);
if (parser.has("help"))
{
help(argv);
return 0;
}
cascadeName = parser.get<string>("cascade");
nestedCascadeName = parser.get<string>("nested-cascade");
scale = parser.get<
double>(
"scale");
if (scale < 1)
tryflip = parser.has("try-flip");
inputName = parser.get<string>("@filename");
if (!parser.check())
{
parser.printErrors();
return 0;
}
if (!nestedCascade.
load(samples::findFileOrKeep(nestedCascadeName)))
cerr << "WARNING: Could not load classifier cascade for nested objects" << endl;
if (!cascade.
load(samples::findFile(cascadeName)))
{
cerr << "ERROR: Could not load classifier cascade" << endl;
help(argv);
return -1;
}
if( inputName.empty() || (isdigit(inputName[0]) && inputName.size() == 1) )
{
int camera = inputName.empty() ? 0 : inputName[0] - '0';
if(!capture.
open(camera))
{
cout << "Capture from camera #" << camera << " didn't work" << endl;
return 1;
}
}
else if (!inputName.empty())
{
image =
imread(samples::findFileOrKeep(inputName), IMREAD_COLOR);
{
if (!capture.
open(samples::findFileOrKeep(inputName)))
{
cout << "Could not read " << inputName << endl;
return 1;
}
}
}
else
{
image =
imread(samples::findFile(
"lena.jpg"), IMREAD_COLOR);
{
cout << "Couldn't read lena.jpg" << endl;
return 1;
}
}
{
cout << "视频捕获已启动 ..." << endl;
for(;;)
{
capture >> frame;
if( frame.empty() )
break;
detectAndDraw( frame1, cascade, nestedCascade, scale, tryflip );
if( c == 27 || c == 'q' || c == 'Q' )
break;
}
}
else
{
cout << "检测视频 " << inputName << endl;
{
detectAndDraw( image, cascade, nestedCascade, scale, tryflip );
}
else if( !inputName.empty() )
{
FILE* f = fopen( inputName.c_str(), "rt" );
if( f )
{
char buf[1000+1];
while( fgets( buf, 1000, f ) )
{
int len = (int)strlen(buf);
while( len > 0 && isspace(buf[len-1]) )
len--;
buf[len] = '\0';
cout << "文件 " << buf << endl;
image =
imread( buf, IMREAD_COLOR );
{
detectAndDraw( image, cascade, nestedCascade, scale, tryflip );
if( c == 27 || c == 'q' || c == 'Q' )
break;
}
else
{
cerr << "啊呀, 无法读取图像 " << buf << endl;
}
}
fclose(f);
}
}
}
return 0;
}
double scale, bool tryflip )
{
double t = 0;
vector<Rect> faces, faces2;
const static Scalar colors[] =
{
};
缩放(gray, smallImg,
尺寸(), fx, fx, INTER_LINEAR_EXACT );
1.1, 2, 0
|CASCADE_SCALE_IMAGE,
如果(尝试翻转 )
{
翻转(smallImg, smallImg, 1);
1.1, 2, 0
|CASCADE_SCALE_IMAGE,
对于( 矢量<矩形>::const_iterator r = 面2.begin(); r != 面2.end(); ++r )
{
面.push_back(
矩形(smallImg.
cols - r->x - r->width, r->y, r->width, r->height));
}
}
printf(
"检测时间 = %g ms\n", t*1000/
获得滴答频率());
对于 ( 大小_t i = 0; i < 面.size(); i++ )
{
矢量<矩形>嵌套对象;
int 半径;
如果( 0.75 < 长宽比 && 长宽比 < 1.3 )
{
中心.x =
四舍五入((r.x + r.width*0.5)*规模);
中心.y =
四舍五入((r.y + r.height*0.5)*规模);
半径 =
四舍五入((r.width + r.height)*0.25*规模);
圆( img, 中心, 半径, 颜色, 3, 8, 0 );
}
else
color, 3, 8, 0);
if( nestedCascade.
empty() )
continue;
smallImgROI = smallImg( r );
1.1, 2, 0
|CASCADE_SCALE_IMAGE,
for ( size_t j = 0; j < nestedObjects.size(); j++ )
{
矩形 nr = nestedObjects[j];
圆( img, 中心, 半径, 颜色, 3, 8, 0 );
}
}
}
用于目标检测的级联分类器类。
定义 objdetect.hpp:258
bool empty() const
检查分类器是否已加载。
bool load(const String &filename)
从文件中加载分类器。
void detectMultiScale(InputArray image, std::vector< Rect > &objects, double scaleFactor=1.1, int minNeighbors=3, int flags=0, Size minSize=Size(), Size maxSize=Size())
检测输入图像中不同大小的目标。返回检测到的目标列表作为...
设计用于命令行解析。
定义 utility.hpp:820
CV_NODISCARD_STD Mat clone() const
创建数组及其基础数据的完整副本。
bool empty() const
如果数组不包含任何元素,则返回 true。
2D 矩形模板类。
定义 types.hpp:444
_Tp x
左上角的 x 坐标
定义 types.hpp:480
_Tp y
左上角的 y 坐标
定义 types.hpp:481
_Tp width
矩形的宽度
定义 types.hpp:482
_Tp height
矩形的高度
定义 types.hpp:483
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
从视频文件、图像序列或摄像头中捕获视频的类。
定义 videoio.hpp:731
virtual bool open(const String &filename, int apiPreference=CAP_ANY)
打开视频文件或捕获设备或 IP 视频流以进行视频捕获。
virtual bool isOpened() const
如果视频捕获已初始化,则返回 true。
#define CV_VERSION
定义 version.hpp:19
void flip(InputArray src, OutputArray dst, int flipCode)
围绕纵轴、横轴或二者同时翻转 2D 数组。
int cvRound(double value)
将浮点数舍入到最接近的整数。
定义 fast_math.hpp:200
double getTickFrequency()
返回每秒的滴答次数。
int64 getTickCount()
返回滴答次数。
@ circle
定义 gr_skig.hpp:62
void imshow(const String &winname, InputArray mat)
在指定窗口中显示图像。
int waitKey(int delay=0)
等待按下的键。
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 equalizeHist(InputArray src, OutputArray dst)
均衡灰度图像的直方图。
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