Opencv HOG特征检测
Posted herd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Opencv HOG特征检测相关的知识,希望对你有一定的参考价值。
HOGDescriptor hogDescriptor = HOGDescriptor();
hogDescriptor.setSVMDetector(hogDescriptor.getDefaultPeopleDetector());
vector<Rect> vec_rect;
hogDescriptor.detectMultiScale(img1, vec_rect, 0, Size(4, 4), Size(64, 64), 1.05, 2);
for (size_t t=0;t<vec_rect.size();t++)
{
Scalar color_1 = Scalar(rng1.uniform(0,255), rng1.uniform(0, 255), rng1.uniform(0, 255));
rectangle(img2, vec_rect[t], color_1, 2, 8, 0);
}
以上是关于Opencv HOG特征检测的主要内容,如果未能解决你的问题,请参考以下文章
基于 HOG 特征的 SVM 分类器用于 OpenCV 中的“对象检测”