资源简介
基于opencv3.4以上版本,VS新建工程配置好opencv,修改代码中路径为自己的路径即可
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “windows.h“
#include
using namespace std;
using namespace cv;
using namespace cv::dnn;
#define SRC_PATH “D:\\Edu_online\\image_for_test“
#define DST_PATH “D:\\Edu_online\\image_for_test_res“
#define LONG_NAME_LEN 1024
const size_t inWidth = 900;
const size_t inHeight = 900;
const double inScaleFactor = 1.0;
const Scalar meanVal(104.0 177.0 123.0);
void find_folder_path(char path[] vector *path_tree int level = 0)
{
char find_path[LONG_NAME_LEN];
sprintf_s(find_path “%s\\*“ path);
WIN32_FIND_DATA FindFileData;
HANDLE hFind;
bool bContinue = true;
hFind = FindFirstFile(find_path &FindFileData);
if (hFind == INVALID_HANDLE_VALUE)
return;
while (bContinue)
{
if (strcmp(FindFileData.cFileName “..“) && strcmp(FindFileData.cFileName “.“))
{
if (FindFileData.dwFileAttributes == FILE_ATTRIBUTE_DIRECTORY)
{
sprintf_s(find_path “%s\\%s“ path FindFileData.cFileName);
path_tree->push_back(find_path);
find_folder_path(find_path path_tree level + 1);
}
}
bContinue = FindNextFile(hFind &FindFileData);
}
}
int main(int argc char** argv)
{
// step1 读取路径下图片使用
vector path_tree;
find_folder_path(SRC_PATH &path_tree);
path_tree.push_back(SRC_PATH);
int path_num = 0;
// step2 检测需要使用
String modelConfiguration = “./face_detector/deploy.prototxt“;
String modelBinary = “./face_detector/res10_300x300_ssd_iter_140000.caffemodel“;
//! [Initialize network]
dnn::Net net = readNetFromCaffe(modelConfiguration modelBinary);
if (net.empty())
{
cerr << “Can‘t load network by using the following files: “ << endl;
cerr << “prototxt: “ << modelConfiguration << endl;
cerr << “caffemodel: “ << modelBinary << endl;
cerr << “Models are available here:“ << endl;
cerr << “/samples/dnn/face_detector“ << endl;
cerr << “or here:“ << endl;
cerr << “https://github.com/opencv/opencv/tree/master/samples/dnn/face_detector“ << endl;
exit(-1);
}
//if (parser.get(“opencl“))
{
//net.setPreferableTarget(DNN_TARGET_OPENCL);
}
char eye_pos_path[LONG_NAME_LEN];
for (path_num = 0; path_num < path_tree.size(); path_num++)
{
// 查找路径下所有图片
memset(eye_pos_path 0 LONG_NAME_LEN*sizeof(char));
sprintf_s(eye_pos_path “%s“ path_tree.at(path_num).c_str());
printf(“\n%s ...\n“ path_tree.at(path_num).c_str());
Mat inputBlob;
char find_name[1024] = ““;
sprintf_s(find_name “%s\\*.jpg“ eye_pos_path); // 原图jpg格式
_finddata_t file_info;
intptr_t f_handle = _findfirst(find_name &file_info);
if (f_handle != -1)
{
do
{
// 读取原图
char org_
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 28103 2018-05-13 11:58 代码+模型+网络\deploy.prototxt
文件 6462 2018-05-13 17:03 代码+模型+网络\main.cpp
文件 10666211 2018-01-22 01:22 代码+模型+网络\res10_300x300_ssd_iter_140000.caffemodel
目录 0 2018-05-13 17:16 代码+模型+网络
----------- --------- ---------- ----- ----
10700776 4
相关资源
- 广联达6.0写锁包,2020年11月最新
- 机器学习个人笔记完整版v5.2-A4打印版
- 深度学习卷积神经网络可检测和分类
- GAN对抗式生成网络的应用:从图片上
- NVIDIAOpticalFlowSDK-79c6cee80a2df9a196f20afd6
- [en]深度学习[Deep Learning: Adaptive Compu
- opencv_contrib-3.4.0.zip
- opencv2.4.9源码分析——SIFT
- 用两个摄像头实现,双目标定,双目
- 李宏毅-机器学习(视频2017完整)
- 吴恩达深度学习第一课第四周作业及
- 机器学习深度学习 PPT
- 麻省理工:深度学习介绍PPT-1
- 论文研究-基于肤色和AdaBoost算法的彩
- Wikipedia机器学习迷你电子书之四《D
- opencv_traincascade训练分类器,手势识别
- 深度学习在遥感中的应用综述
- opencv3.0交叉编译用parallel.cpp
- 深度学习数据集标注
- 基于opencv的图像识别识别图像中的色
- 深度学习算法实践源码-吴岸城
- 基于openCV的识别特定颜色区域
- 基于OpenCV的分水岭算法实现
- QT+opencv+OCR 身份证号码,银行卡号识别
- opencv视频特定颜色区域识别
- 把RGB转换为HSV和HSI然后根据黄色和蓝
- opencv视觉测距
- 基于Qt和opencv的身份证号码识别系统
- opencv_ffmpeg249.dll
- SfM稀疏三维点云重建--完整工程文件
评论
共有 条评论