Created
August 7, 2017 02:49
-
-
Save immengineer/989b6ca19f736c6688342c2a17e9af90 to your computer and use it in GitHub Desktop.
JAISDK 画像データ取得 前準備部分
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace SimpleImageDisplaySample | |
{ | |
public partial class Form1 : Form | |
{ | |
// Main factory object | |
CFactory myFactory = new CFactory(); | |
// Opened camera object | |
CCamera myCamera; | |
// GenICam nodes | |
CNode myWidthNode; | |
CNode myHeightNode; | |
CNode myGainNode; | |
// Measure Rectangle | |
Jai_FactoryWrapper.RECT m_MeasureRect; | |
// Buffer used for converting images before average is calculated | |
Jai_FactoryWrapper.ImageInfo m_ConversionBuffer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment