Example Language Description
AsyncTriggerEx C++ Demonstrates some of the basic asynchronous trigger capabilities of compatible PGR Imaging Products.
AsyncTriggerExCSharp C# Equivalent to AsnycTriggerEx, except written in C#.
BusEvents_CSharp C# Demonstrates how to handle bus events such as bus arrivals, removals and resets through the Managed interface.
CustomImageEx C++ Demonstrates how to configure a PGR Imaging Product to output custom sized images.
CustomImageExCSharp C# Equivalent to CustomImageEx, except written in C#.
ExtendedShutterEx C++ Demonstrates how to enable and calculate extended integration times for applicable Point Grey Imaging Products.
FlyCap2 C++ The main Point Grey Research application used to work with single lens cameras.
FlyCap2MFC C++ Equivalent to FlyCap2, except uses features
of the Microsoft Foundation Class
Library.
FlyCapture2GUI C++ This example contains the same source code that is used for the Camera Selection and Camera Control
dialogs in FlyCapture.
FlyCapture2Test C++ Tests basic functionality of a single camera
and reports information related to all compatible cameras
attached to the host system.
FlyCapture2Test_C C Equivalent to FlyCapture2Test, except written in C.
FlyCapture2Test_CSharp C# Equivalent to FlyCapture2Test, except
written in C#.
GigEGrabEx C++ Demonstrates how to grab images with GigE Vision cameras.
GigEGrabEx_C C Equivalent to GigEGrabEx, except written in C.
GigEGrabEx_CSharp C# Equivalent to GigEGrabEx, except written in C#.
GrabCallbackEx C++ Demonstrates how to use the image callback functionality to receive images instead of using RetrieveBuffer().
GrabCallbackEx_CSharp C# Equivalent to GrabCallbackEx, except written in C#.
HighDynamicRangeEx C++ Demonstrates the use of High
Dynamic Range (HDR) functionality.
ImageEventEx C++ Demonstrates how to implement partial image event notification.  Partial
image event notification is a mechanism that provides the user with access to
image data as it arrives in the PC's memory, before the entire image is
available.
MultipleCameraEx C++ Synchronizes image grabbing across multiple cameras.
SaveImageToAviEx C++ Demonstrates saving a series of images to an AVI file.
SaveImageToFlashEx C++ Demonstrates saving images to the
data flash on the camera.
SerialPortEx C++ Demonstrates how to transmit and receive characters by using the camera's serial buffer system.

Point Grey FlyCapture 实例汇总的更多相关文章

  1. Java最全文件操作实例汇总

    本文实例汇总了Java文件操作.分享给大家供大家参考,具体如下: 1.创建文件夹 ? 1 2 3 4 5 6 7 8 9 10 11 //import java.io.*; File myFolder ...

  2. [转]C++常用字符串分割方法实例汇总

    本文实例汇总了C++常用字符串分割方法,分享给大家供大家参考.具体分析如下: 我们在编程的时候经常会碰到字符串分割的问题,这里总结下,也方便我们以后查询使用. 一.用strtok函数进行字符串分割 原 ...

  3. C++常用字符串分割方法实例汇总

    投稿:shichen2014 字体:[增加 减小] 类型:转载 时间:2014-10-08我要评论 这篇文章主要介绍了C++常用字符串分割方法实例汇总,包括了strtok函数.STL.Boost等常用 ...

  4. android用户界面之ScrollView教程实例汇总

    --------------------------汇总不容易啊------------------------------- 一.ScrollView基础知识 1.Android中ScrollVie ...

  5. JavaScript正则表达式实例汇总

    本文会持续更新 -------------------------------------------------------------------------------------------- ...

  6. js实现动态加载脚本的方法实例汇总

      本文实例讲述了js实现动态加载脚本的方法.分享给大家供大家参考,具体如下: 最近公司的前端地图产品需要做一下模块划分,希望用户用到哪一块的功能再加载哪一块的模块,这样可以提高用户体验. 所以到处查 ...

  7. js闭包实例汇总

    本文是通过实例来帮助大家深刻理解js闭包,是篇非常不错的文章,这里推荐给大家,有需要的小伙伴可以参考下 Js闭包 闭包前要了解的知识 1. 函数作用域 (1).Js语言特殊之处在于函数内部可以直接读取 ...

  8. 史上最全PHP正则表达式实例汇总

    收集了一份php正则表达式的实例教程,真心不错,记录下. 正则表达式用于字符串处理.表单验证等场合,实用高效. 一些常用的表达式: $str = preg_replace("/(<a. ...

  9. Python3_实例汇总

    1.Python数字求和 # -*- codingLuft-8 -*- #Filename: test.py #author by:Leq #用户输入数字 num1 = input("输入第 ...

随机推荐

  1. [unity3d插件]2dtoolkit系列一 创建精灵

    从今天开始要做一个2d游戏,由于之前都是做cocos2dx的,然后接触了一段时间的unity3d,都是做3D方面的东西,得知要做2d游戏还是有点开心的,或许因为不想丢失之前的2d游戏的一些思想,然后接 ...

  2. LeetCode——Same Tree(判断两棵树是否相同)

    问题: Given two binary trees, write a function to check if they are equal or not. Two binary trees are ...

  3. hdu 4568 Hunter(spfa预处理 + 状压dp)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4568 思路:首先spfa预处理出每对宝藏之间的最短距离以及宝藏到边界的最短距离,然后dp[state] ...

  4. Hibernate入门案例 增删改

    一.Hibernate入门案例剖析: ①创建实体类Student 并重写toString方法 public class Student { private Integer sid; private I ...

  5. 什么时候使用CountDownLatch

    正如每个Java文档所描述的那样,CountDownLatch是一个同步工具类,它允许一个或多个线程一直等待,直到其他线程的操作执行完后再执行.在Java并发中,countdownlatch的概念是一 ...

  6. 【MySQL 忘记密码】MySQL忘记密码怎么解决 mysql5.5 windows7

    ---恢复内容开始--- 如果MySQL 长久不使用,忘记密码,怎么解决??? 1.首先,需要在任务管理器关闭mysql相关的服务进程 2.cmd,进入DOS窗口,进入到mysql的安装路径的bin目 ...

  7. 解决mysql shell执行中文表名报command not found错误

    mysql -h 192.168.22.201 -uusername -ppassword --default-character-set=utf8 rom3 -e "DELETE FROM ...

  8. Liferay 6.2 改造系列之二十三:修改Liferay原始主题中"技术支持:Liferay"字样

    1.修改主题模板文件,具体位置如下 (1) portal-master\portal-web\docroot\html\themes\_unstyled\templates\portal_normal ...

  9. css/js(工作中遇到的问题)

    移动设备点击时去掉外加的蓝色边框 a, input, button { -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highligh ...

  10. ajax上传后用超链接展示无法下载问题

    ajax插件上传后用超链接展示出来,但是点击超链接无法下载,最后发现是上传文件名为中文在作怪,于是修改了tomcat配置文件server.xml中的 <Connector port=" ...