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

相关文章

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

找不到Anaconda prompt终端的原因分析及解决方案

《找不到Anacondaprompt终端的原因分析及解决方案》因为anaconda还没有初始化,在安装anaconda的过程中,有一行是否要添加anaconda到菜单目录中,由于没有勾选,导致没有菜... 目录问题原因问http://www.chinasem.cn题解决安装了 Anaconda 却找不到 An

Spring定时任务只执行一次的原因分析与解决方案

《Spring定时任务只执行一次的原因分析与解决方案》在使用Spring的@Scheduled定时任务时,你是否遇到过任务只执行一次,后续不再触发的情况?这种情况可能由多种原因导致,如未启用调度、线程... 目录1. 问题背景2. Spring定时任务的基本用法3. 为什么定时任务只执行一次?3.1 未启用

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

Spring、Spring Boot、Spring Cloud 的区别与联系分析

《Spring、SpringBoot、SpringCloud的区别与联系分析》Spring、SpringBoot和SpringCloud是Java开发中常用的框架,分别针对企业级应用开发、快速开... 目录1. Spring 框架2. Spring Boot3. Spring Cloud总结1. Sprin

Spring 中 BeanFactoryPostProcessor 的作用和示例源码分析

《Spring中BeanFactoryPostProcessor的作用和示例源码分析》Spring的BeanFactoryPostProcessor是容器初始化的扩展接口,允许在Bean实例化前... 目录一、概览1. 核心定位2. 核心功能详解3. 关键特性二、Spring 内置的 BeanFactory

MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析

《MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析》本文将详细讲解MyBatis-Plus中的lambdaUpdate用法,并提供丰富的案例来帮助读者更好地理解和应... 目录深入探索MyBATis-Plus中Service接口的lambdaUpdate用法及示例案例背景

MyBatis-Plus中静态工具Db的多种用法及实例分析

《MyBatis-Plus中静态工具Db的多种用法及实例分析》本文将详细讲解MyBatis-Plus中静态工具Db的各种用法,并结合具体案例进行演示和说明,具有很好的参考价值,希望对大家有所帮助,如有... 目录MyBATis-Plus中静态工具Db的多种用法及实例案例背景使用静态工具Db进行数据库操作插入

Go使用pprof进行CPU,内存和阻塞情况分析

《Go使用pprof进行CPU,内存和阻塞情况分析》Go语言提供了强大的pprof工具,用于分析CPU、内存、Goroutine阻塞等性能问题,帮助开发者优化程序,提高运行效率,下面我们就来深入了解下... 目录1. pprof 介绍2. 快速上手:启用 pprof3. CPU Profiling:分析 C

MySQL表锁、页面锁和行锁的作用及其优缺点对比分析

《MySQL表锁、页面锁和行锁的作用及其优缺点对比分析》MySQL中的表锁、页面锁和行锁各有特点,适用于不同的场景,表锁锁定整个表,适用于批量操作和MyISAM存储引擎,页面锁锁定数据页,适用于旧版本... 目录1. 表锁(Table Lock)2. 页面锁(Page Lock)3. 行锁(Row Lock