博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从文件或摄像机读
阅读量:6547 次
发布时间:2019-06-24

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

View Code
1 int main( int argc, char** argv ) { 2     cvNamedWindow( "Example2_9", CV_WINDOW_AUTOSIZE ); 3     CvCapture* capture; 4     if (argc==1) { 5         capture = cvCreateCameraCapture( 0 ); 6     } else { 7         capture = cvCreateFileCapture( argv[1] ); 8     } 9     assert( capture != NULL );10 11     IplImage* frame;12     while(1) {13         frame = cvQueryFrame( capture );14         if( !frame ) break;15         cvShowImage( "Example2_9", frame );16         char c = cvWaitKey(10);17         if( c == 27 ) break;18     }19     cvReleaseCapture( &capture );20     cvDestroyWindow( "Example2_9" );21 }

 

转载地址:http://kqedo.baihongyu.com/

你可能感兴趣的文章
Java 线程 — ThreadLocal
查看>>
安居客爬虫(selenium实现)
查看>>
-----二叉树的遍历-------
查看>>
F. Multicolored Markers(数学思维)
查看>>
nodjs html 转 pdf
查看>>
Python字典
查看>>
Android存储方式之SQLite的使用
查看>>
洛谷P1287 盒子与球 数学
查看>>
Bootstrap vs Foundation如何选择靠谱前端框架
查看>>
与、或、异或、取反、左移和右移
查看>>
vue常用的指令
查看>>
matlab练习程序(随机游走图像)
查看>>
Linux命令行下运行java.class文件
查看>>
input文本框实现宽度自适应代码实例
查看>>
protocol buffers的编码原理
查看>>
行为型设计模式之命令模式(Command)
查看>>
减少死锁的几个常用方法
查看>>
HDFS 核心原理
查看>>
正确配置jstl的maven依赖,jar包冲突的问题终于解决啦
查看>>
登录内网账号后,连接不上内网网址
查看>>