VideoCapture源代码分析

2024-02-20 20:08

本文主要是介绍VideoCapture源代码分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文转自: http://blog.csdn.net/dsgthlr/article/details/42265107

[cpp] view plain copy print ?
  1. 获取摄像头图像代码  
获取摄像头图像代码
[cpp] view plain copy print ?
  1. #include "opencv2/opencv.hpp"  
  2.   
  3. using namespace cv;  
  4.   
  5. int main(intchar**)  
  6. {  
  7.     VideoCapture cap(0); // open the default camera  
  8.     if(!cap.isOpened())  // check if we succeeded  
  9.         return -1;  
  10.   
  11.     Mat edges;  
  12.     namedWindow("edges",1);  
  13.     for(;;)  
  14.     {  
  15.         Mat frame;  
  16.         cap >> frame; // get a new frame from camera  
  17.         cvtColor(frame, edges, COLOR_BGR2GRAY);  
  18.         GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);  
  19.         Canny(edges, edges, 0, 30, 3);  
  20.         imshow("edges", edges);  
  21.         if(waitKey(30) >= 0) break;  
  22.     }  
  23.     // the camera will be deinitialized automatically in VideoCapture destructor  
  24.     return 0;  
  25. }  
#include "opencv2/opencv.hpp"using namespace cv;int main(int, char**)
{VideoCapture cap(0); // open the default cameraif(!cap.isOpened())  // check if we succeededreturn -1;Mat edges;namedWindow("edges",1);for(;;){Mat frame;cap >> frame; // get a new frame from cameracvtColor(frame, edges, COLOR_BGR2GRAY);GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);Canny(edges, edges, 0, 30, 3);imshow("edges", edges);if(waitKey(30) >= 0) break;}// the camera will be deinitialized automatically in VideoCapture destructorreturn 0;
}
[cpp] view plain copy print ?
  1.   
</pre><div class="dp-highlighter bg_cpp"><div class="bar"><div class="tools"><strong>[cpp]</strong> <a target=_blank title="view plain" class="ViewSource" href="http://blog.csdn.net/dsgthlr/article/details/42265107#">view plain</a><a target=_blank title="copy" class="CopyToClipboard" href="http://blog.csdn.net/dsgthlr/article/details/42265107#">copy</a><a target=_blank title="print" class="PrintSource" href="http://blog.csdn.net/dsgthlr/article/details/42265107#">print</a><a target=_blank title="?" class="About" href="http://blog.csdn.net/dsgthlr/article/details/42265107#">?</a></div></div><ol class="dp-cpp"><li class="alt"><span><span>类成员:  </span></span></li></ol></div><pre class="cpp" style="display: none;" name="code">类成员:
[cpp] view plain copy print ?
  1. <pre name="code" class="cpp">class CV_EXPORTS_W VideoCapture  
  2. {  
  3. public:  
  4.     CV_WRAP VideoCapture();  
  5.     CV_WRAP VideoCapture(const String& filename);       <span style="white-space:pre">    </span>//open video from url;  
  6.     CV_WRAP VideoCapture(int device);                   //open device  
  7.   
  8.     virtual ~VideoCapture();  
  9.     CV_WRAP virtual bool open(const String& filename);<span style="white-space:pre">          </span><span style="font-family: Arial, Helvetica, sans-serif;">                        </span><span style="font-family: Arial, Helvetica, sans-serif;">  
  10. </span>    CV_WRAP virtual bool open(int device);<span style="white-space:pre">             </span><pre name="code" class="cpp"><span style="white-space:pre">                                    </span>//<span style="font-family: Arial, Helvetica, sans-serif;">VideoCapture cap(0)   等价于</span><pre name="code" class="cpp"><span style="font-family: Arial, Helvetica, sans-serif;"><span>                                                                      </span>//VideoCapture cap;</span>  
<pre name="code" class="cpp">class CV_EXPORTS_W VideoCapture
{
public:CV_WRAP VideoCapture();CV_WRAP VideoCapture(const String& filename);		<span style="white-space:pre">	</span>//open video from url;CV_WRAP VideoCapture(int device);					//open devicevirtual ~VideoCapture();CV_WRAP virtual bool open(const String& filename);<span style="white-space:pre">			</span><span style="font-family: Arial, Helvetica, sans-serif;">						</span><span style="font-family: Arial, Helvetica, sans-serif;">
</span>    CV_WRAP virtual bool open(int device);<span style="white-space:pre">				</span><pre name="code" class="cpp"><span style="white-space:pre">									</span>//<span style="font-family: Arial, Helvetica, sans-serif;">VideoCapture cap(0)   等价于</span><pre name="code" class="cpp"><span style="font-family: Arial, Helvetica, sans-serif;"><span>																		</span>//VideoCapture cap;</span>
[cpp] view plain copy print ?
  1. <span style="font-family: Arial, Helvetica, sans-serif;"><span>                                                                     </span>//cap.open(0);<span> </span></span>  
<span style="font-family: Arial, Helvetica, sans-serif;"><span>																		</span>//cap.open(0);<span>	</span></span>
 

CV_WRAP virtual bool isOpened() const; //check if open sucessed CV_WRAP virtual void release();//close the already opened file or camera.CV_WRAP virtual bool grab();//The primary use of the function is in multi-camera environments, CV_WRAP virtual bool retrieve(OutputArray image, int flag = 0); virtual VideoCapture& operator >> (CV_OUT Mat& image); virtual VideoCapture& operator >> (CV_OUT UMat& image);

 
[cpp] view plain copy print ?
  1.     CV_WRAP virtual bool read(OutputArray image);<span style="white-space:pre">           </span>//cap.read(frame);等价于  cap>>frame;  
  2.   
  3.     CV_WRAP virtual bool set(int propId, double value);  
  4.     CV_WRAP virtual double get(int propId);  
  5.   
  6. protected:  
  7.     Ptr<CvCapture> cap;  
  8.     Ptr<IVideoCapture> icap;  
  9. private:  
  10.     static Ptr<IVideoCapture> createCameraCapture(int index);  
  11. };  
    CV_WRAP virtual bool read(OutputArray image);<span style="white-space:pre">			</span>//cap.read(frame);等价于  cap>>frame;CV_WRAP virtual bool set(int propId, double value);CV_WRAP virtual double get(int propId);protected:Ptr<CvCapture> cap;Ptr<IVideoCapture> icap;
private:static Ptr<IVideoCapture> createCameraCapture(int index);
};


这篇关于VideoCapture源代码分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/729396

相关文章

Springboot中分析SQL性能的两种方式详解

《Springboot中分析SQL性能的两种方式详解》文章介绍了SQL性能分析的两种方式:MyBatis-Plus性能分析插件和p6spy框架,MyBatis-Plus插件配置简单,适用于开发和测试环... 目录SQL性能分析的两种方式:功能介绍实现方式:实现步骤:SQL性能分析的两种方式:功能介绍记录

最长公共子序列问题的深度分析与Java实现方式

《最长公共子序列问题的深度分析与Java实现方式》本文详细介绍了最长公共子序列(LCS)问题,包括其概念、暴力解法、动态规划解法,并提供了Java代码实现,暴力解法虽然简单,但在大数据处理中效率较低,... 目录最长公共子序列问题概述问题理解与示例分析暴力解法思路与示例代码动态规划解法DP 表的构建与意义动

C#使用DeepSeek API实现自然语言处理,文本分类和情感分析

《C#使用DeepSeekAPI实现自然语言处理,文本分类和情感分析》在C#中使用DeepSeekAPI可以实现多种功能,例如自然语言处理、文本分类、情感分析等,本文主要为大家介绍了具体实现步骤,... 目录准备工作文本生成文本分类问答系统代码生成翻译功能文本摘要文本校对图像描述生成总结在C#中使用Deep

Redis主从/哨兵机制原理分析

《Redis主从/哨兵机制原理分析》本文介绍了Redis的主从复制和哨兵机制,主从复制实现了数据的热备份和负载均衡,而哨兵机制可以监控Redis集群,实现自动故障转移,哨兵机制通过监控、下线、选举和故... 目录一、主从复制1.1 什么是主从复制1.2 主从复制的作用1.3 主从复制原理1.3.1 全量复制

Redis主从复制的原理分析

《Redis主从复制的原理分析》Redis主从复制通过将数据镜像到多个从节点,实现高可用性和扩展性,主从复制包括初次全量同步和增量同步两个阶段,为优化复制性能,可以采用AOF持久化、调整复制超时时间、... 目录Redis主从复制的原理主从复制概述配置主从复制数据同步过程复制一致性与延迟故障转移机制监控与维

Redis连接失败:客户端IP不在白名单中的问题分析与解决方案

《Redis连接失败:客户端IP不在白名单中的问题分析与解决方案》在现代分布式系统中,Redis作为一种高性能的内存数据库,被广泛应用于缓存、消息队列、会话存储等场景,然而,在实际使用过程中,我们可能... 目录一、问题背景二、错误分析1. 错误信息解读2. 根本原因三、解决方案1. 将客户端IP添加到Re

Redis主从复制实现原理分析

《Redis主从复制实现原理分析》Redis主从复制通过Sync和CommandPropagate阶段实现数据同步,2.8版本后引入Psync指令,根据复制偏移量进行全量或部分同步,优化了数据传输效率... 目录Redis主DodMIK从复制实现原理实现原理Psync: 2.8版本后总结Redis主从复制实

锐捷和腾达哪个好? 两个品牌路由器对比分析

《锐捷和腾达哪个好?两个品牌路由器对比分析》在选择路由器时,Tenda和锐捷都是备受关注的品牌,各自有独特的产品特点和市场定位,选择哪个品牌的路由器更合适,实际上取决于你的具体需求和使用场景,我们从... 在选购路由器时,锐捷和腾达都是市场上备受关注的品牌,但它们的定位和特点却有所不同。锐捷更偏向企业级和专

Spring中Bean有关NullPointerException异常的原因分析

《Spring中Bean有关NullPointerException异常的原因分析》在Spring中使用@Autowired注解注入的bean不能在静态上下文中访问,否则会导致NullPointerE... 目录Spring中Bean有关NullPointerException异常的原因问题描述解决方案总结

python中的与时间相关的模块应用场景分析

《python中的与时间相关的模块应用场景分析》本文介绍了Python中与时间相关的几个重要模块:`time`、`datetime`、`calendar`、`timeit`、`pytz`和`dateu... 目录1. time 模块2. datetime 模块3. calendar 模块4. timeit