博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从摄像头批量截取图片
阅读量:5883 次
发布时间:2019-06-19

本文共 2308 字,大约阅读时间需要 7 分钟。

1 // hand gesture sampler.cpp : Defines the entry point for the console application. 2  3 // 4 #include "stdafx.h" 5 #include 
6 #include
7 8 #include
9 10 using namespace cv;11 using namespace std;12 13 Mat src, src2Save;14 char cfileName[1024];15 string sfileName = "";16 Size outputSize = Size(320, 240);17 18 template
string NumberToString ( T Number );19 void help();20 21 22 int main()23 {24 help();25 26 namedWindow("monitor", 1);27 28 VideoCapture cap(0);29 30 if(cap.isOpened())31 {32 int c = 0;33 int num = 0;34 bool sampleState = false;35 36 //main loop37 while( c != 27)38 {39 if(c == 98) sampleState = true;40 if(c == 115) sampleState = false;41 42 //get webcam image43 cap >> src;44 45 //resize image to 320*24046 if(src.cols > 320 || src.rows > 240) resize(src, src2Save, outputSize, 0.5, 0.5, 1);47 48 //show image49 imshow("monitor", src2Save);50 51 //save image 52 sfileName = "f:/documents/Downloads/hand gesture pictures/" + NumberToString(num) + ".png";53 if(sampleState) 54 { 55 imwrite(sfileName, src2Save); 56 num ++;57 cout<<"\nCollected Sample Number - " << num << endl;58 } 59 60 //exit loop61 c = waitKey(10);62 }63 }64 else65 //end app66 return -1;67 68 return 0;69 }70 71 template
72 string NumberToString ( T Number )73 {74 ostringstream ss;75 ss << Number;76 return ss.str();77 }78 79 void help()80 {81 printf(82 "========================\n"83 "========================\n"84 "Programme to collect a good number of hand gestures from video streams.\n"85 "Usage:\n"86 "(s)top - stop sampling\n"87 "(b)egin - begin sampling\n"88 "ESC - exit the programme\n"89 "==========================\n"90 "==========================\n"91 );92 }

 

转载于:https://www.cnblogs.com/xiangtailiang/archive/2012/05/08/2490397.html

你可能感兴趣的文章
活动实录 | Design For Failure——饿了么技术运维实践
查看>>
402. Remove K Digits
查看>>
用户吐槽:Azure DevOps CI 体验太差
查看>>
C# 8的Ranges和递归模式
查看>>
为所有PHP-FPM容器构建单独的Nginx Docker镜像
查看>>
一文看完HTTP3的演化历程
查看>>
立下“去O”Flag的AWS,悄悄修炼了哪些内功?
查看>>
依赖类型语言Idris发布1.0版本
查看>>
四种方式主导你的第一个敏捷项目
查看>>
2019年,你需要关注这些Node API和Web框架
查看>>
Entity Framework Core 2.0的突破性变更
查看>>
QCon上海2015盛大开幕
查看>>
回顾Swift 3,展望Swift 4
查看>>
Bowery为什么从Node.js转向 Go
查看>>
深入浅出Tensorflow(五):循环神经网络简介
查看>>
新CIO:Mark Schwartz认为的领先IT
查看>>
微软一顿操作猛如虎,PowerShell排名直线上升
查看>>
如何对DevOps数据库进行源代码控制
查看>>
cent OS 7.2配置java服务器环境
查看>>
说说跨域那些事儿
查看>>