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. C和C++的头文件总结

    stdafx.h 的英文全称为:Standard Application Framework Extensions(标准应用程序框架的扩展) iostream.h 是input output stre ...

  2. MongoDB学习(1)—在Windows系统中安装MongoDB

    概述 本文主要介绍在Windows系统安装MongoDB的方法. MongoDB官方网址:http://www.mongodb.org/,最新版本为2.6.7. 注意: 从2.2版本开始,MongoD ...

  3. Build better apps: Windows 10 by 10 development series

    http://blogs.windows.com/buildingapps/2015/08/05/build-better-apps-windows-10-by-10-development-seri ...

  4. waterMarkTextBox

    <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" x ...

  5. Linux内核学习之道

    来自:http://blog.chinaunix.net/uid-26258259-id-3783679.html 内核文档 内核代码中包含有大量的文档,这些文档对于学习理解内核有着不可估量的价值,记 ...

  6. AngularJS学习之输入验证

    1.AngularJS可以验证表单和控件可以验证输入的数据: 2.输入验证:客户端不能确保用户输入数据的安全,所以服务器端的数据验证也是必须的: 3.应用实例: <! DOCTYPE html& ...

  7. iOS实现简书的账号识别方式(正则表达式)

    通过简书iOS客户端登录,我们会看到请输入手机号或者邮箱登录,但是我们随机输入1234567的时候,便会弹出手机格式不正确,同样也会识别我们的邮箱格式,那么我们在项目中怎么实现这种判断呢? 0E471 ...

  8. Android内存进程管理机制

    参考文章: http://www.apkbus.com/android-104940-1-1.htmlhttp://blog.sina.com.cn/s/blog_3e3fcadd0100yjo2.h ...

  9. Codeforces 676C Vasya and String(尺取法)

    题目大概说给一个由a和b组成的字符串,最多能改变其中的k个字符,问通过改变能得到的最长连续且相同的字符串是多长. 用尺取法,改变成a和改变成b分别做一次:双指针i和j,j不停++,然后如果遇到需要改变 ...

  10. HDU3870 Catch the Theves(平面图最小割转最短路)

    题目大概说给一个n×n的方格,边有权值,问从求(1,1)到(n,n)的最小割. 点达到了160000个,直接最大流不好.这题的图是平面图,求最小割可以转化成求其对偶图的最短路,来更高效地求解: 首先源 ...