SDC C-Project CF Review 프로그램
LYW
2021-08-10 ebfd7a15f5c7fe5d4cf9120a49b21f3cffd050f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
#pragma once
 
#include "CHCommonClasses/MacroFile.h"
 
class CCHImageData;
 
#define MAX_BUFFER_SCAN_COUNT    1
 
enum    TriggerMode        { ModeFreeRun = 0, ModeInternal, ModeExternal};
enum    TriggerSource    { SourceAutomatic = 0, SourceTrigger1, SourceTrigger2 };
enum    FlipMode        { FlipNone = 0, FlipVertical, FlipHorizontal, FlipBoth, FlipCount };
enum    FrameChannel    { MonoChannel = 1, BGRChannel = 3};
enum    ImageExtension  { BmpExtension = 0, JpgExtension, ImageExtensionCnt};
 
// camera interface
interface ICameraControl2Parent
{
    virtual BOOL ICC2P_GetCurrentFrame(int nIndex, int nFrameWidth, int nFrameHeight, int nFrameChannels,  CCHImageData* pImageData) = 0;
    virtual BOOL ICC2P_FrameCaptured(int nIndex, int nFrameIndex, int nFrameCount) = 0;
    virtual BOOL ICC2P_SnapCompleted(int nIndex, int nFrameCount) = 0;
    virtual void ICC2P_DisplayMessage(int nIndex, const TCHAR* lpstrFormat, ...) = 0;
};
 
class CCameraControlInfo
{
public:
    CCameraControlInfo(int nIndex=0) : m_nIndex(nIndex)    { Reset(); }
    ~CCameraControlInfo(void)                            { Reset(); }
    void Reset()
    {
        m_strName            = _T("");
        m_nLibraryType        = 0;
        m_strConnectionPort    = _T("");
 
        m_nFlipType            = 0;
        m_nGrabberIndex        = -1;
        m_nChannelIndex        = -1;
        m_nFrameWidth        = 0;
        m_nFrameHeight        = 0;
        m_nFrameChannels    = 0;
        m_nGrabCount        = 0;
        m_nFrameCount        = 0;
        m_nImageBufferCount    = 0;
 
        m_nAxisDirectionX    = 0;
        m_nAxisDirectionY    = 0;
        m_dPixelResolution    = 1.0;
 
        m_dGainRed            = 1.0;
        m_dGainGreen        = 1.0;
        m_dGainBlue            = 1.0;
 
        m_strFfcFilename    = _T("");
        m_strCameraFile        = _T("");
        m_bCameraReverseMode = FALSE;
    }
 
 
    BOOL LoadInfo(CMacroFile* pFile, const CString& strItemName)
    {
        if (pFile==NULL) return FALSE;
 
        CString strValue = _T("");
 
        strValue = strItemName + _T("_INDEX");
        pFile->GetItem(strValue, m_nIndex, 0);
 
        strValue = strItemName + _T("_NAME");
        pFile->GetItem(strValue, m_strName, _T(""));
 
        strValue = strItemName + _T("_LIBRARY_TYPE");
        pFile->GetItem(strValue, m_nLibraryType, 0);
 
        strValue = strItemName + _T("_CONNECT_PORT");
        pFile->GetItem(strValue, m_strConnectionPort, _T(""));
 
        strValue = strItemName + _T("_FLIP_TYPE");
        pFile->GetItem(strValue, m_nFlipType, 0);
 
        strValue = strItemName + _T("_GRABBER_INDEX");
        pFile->GetItem(strValue, m_nGrabberIndex, -1);
 
        strValue = strItemName + _T("_CHANNEL_INDEX");
        pFile->GetItem(strValue, m_nChannelIndex, -1);
 
        strValue = strItemName + _T("_FRAME_WIDTH");
        pFile->GetItem(strValue, m_nFrameWidth, 0);
 
        strValue = strItemName + _T("_FRAME_HEIGHT");
        pFile->GetItem(strValue, m_nFrameHeight, 0);
 
        strValue = strItemName + _T("_FRAME_CHANNELS");
        pFile->GetItem(strValue, m_nFrameChannels, 0);
 
        strValue = strItemName + _T("_GRAB_COUNT");
        pFile->GetItem(strValue, m_nGrabCount, 0);
 
        strValue = strItemName + _T("_FRAME_COUNT");
        pFile->GetItem(strValue, m_nFrameCount, 0);
 
        strValue = strItemName + _T("_IMAGE_BUFFER_COUNT");
        pFile->GetItem(strValue, m_nImageBufferCount, 0);
 
        strValue = strItemName + _T("_AXIS_DIRECTION_X");
        pFile->GetItem(strValue, m_nAxisDirectionX, 0);
 
        strValue = strItemName + _T("_AXIS_DIRECTION_Y");
        pFile->GetItem(strValue, m_nAxisDirectionY, 0);
 
        strValue = strItemName + _T("_PIXEL_RESOLUTION");
        pFile->GetItem(strValue, m_dPixelResolution, 1.0);
 
        strValue = strItemName + _T("_GAIN_RED");
        pFile->GetItem(strValue, m_dGainRed, 1.0);
 
        strValue = strItemName + _T("_GAIN_GREEN");
        pFile->GetItem(strValue, m_dGainGreen, 1.0);
 
        strValue = strItemName + _T("_GAIN_BLUE");
        pFile->GetItem(strValue, m_dGainBlue, 1.0);
 
        strValue = strItemName + _T("_FFC_FILE_NAME");
        pFile->GetItem(strValue, m_strFfcFilename, _T(""));
 
        strValue = strItemName + _T("_CAMERA_REVERSE_X");
        pFile->GetItem(strValue, m_bCameraReverseMode, 0);
 
        return TRUE;
    }
 
    BOOL SaveInfo(CMacroFile* pFile, const CString& strItemName)
    {
        if (pFile==NULL) return FALSE;
 
        CString strValue = _T("");
 
        strValue = strItemName + _T("_INDEX");
        pFile->SetItem(strValue, m_nIndex);
 
        strValue = strItemName + _T("_NAME");
        pFile->SetItem(strValue, m_strName);
 
        strValue = strItemName + _T("_LIBRARY_TYPE");
        pFile->SetItem(strValue, m_nLibraryType);
 
        strValue = strItemName + _T("_CONNECT_PORT");
        pFile->SetItem(strValue, m_strConnectionPort);
 
        strValue = strItemName + _T("_FLIP_TYPE");
        pFile->SetItem(strValue, m_nFlipType);
 
        strValue = strItemName + _T("_GRABBER_INDEX");
        pFile->SetItem(strValue, m_nGrabberIndex);
 
        strValue = strItemName + _T("_CHANNEL_INDEX");
        pFile->SetItem(strValue, m_nChannelIndex);
 
        strValue = strItemName + _T("_FRAME_WIDTH");
        pFile->SetItem(strValue, m_nFrameWidth);
 
        strValue = strItemName + _T("_FRAME_HEIGHT");
        pFile->SetItem(strValue, m_nFrameHeight);
 
        strValue = strItemName + _T("_FRAME_CHANNELS");
        pFile->SetItem(strValue, m_nFrameChannels);
 
        strValue = strItemName + _T("_GRAB_COUNT");
        pFile->SetItem(strValue, m_nGrabCount);
 
        strValue = strItemName + _T("_FRAME_COUNT");
        pFile->SetItem(strValue, m_nFrameCount);
 
        strValue = strItemName + _T("_IMAGE_BUFFER_COUNT");
        pFile->SetItem(strValue, m_nImageBufferCount);
 
        strValue = strItemName + _T("_AXIS_DIRECTION_X");
        pFile->SetItem(strValue, m_nAxisDirectionX);
 
        strValue = strItemName + _T("_AXIS_DIRECTION_Y");
        pFile->SetItem(strValue, m_nAxisDirectionY);
 
        strValue = strItemName + _T("_PIXEL_RESOLUTION");
        pFile->SetItem(strValue, m_dPixelResolution);
 
        strValue = strItemName + _T("_GAIN_RED");
        pFile->SetItem(strValue, m_dGainRed);
 
        strValue = strItemName + _T("_GAIN_GREEN");
        pFile->SetItem(strValue, m_dGainGreen);
 
        strValue = strItemName + _T("_GAIN_BLUE");
        pFile->SetItem(strValue, m_dGainBlue);
 
        strValue = strItemName + _T("_FFC_FILE_NAME");
        pFile->SetItem(strValue, m_strFfcFilename);
 
        strValue = strItemName + _T("_CAMERA_REVERSE_X");
        pFile->SetItem(strValue, m_bCameraReverseMode);
 
        return TRUE;
    }
 
    // getter
    int    CCameraControlInfo::GetIndex() const
    {
        return m_nIndex;
    }
 
    CString    CCameraControlInfo::GetName() const
    {
        return m_strName;
    }
 
    int    CCameraControlInfo::GetLibraryType() const
    {
        return m_nLibraryType;
    }
 
    CString    CCameraControlInfo::GetConnectionPort() const
    {
        return m_strConnectionPort;
    }
 
    int    CCameraControlInfo::GetFlipType() const
    {
        return m_nFlipType;
    }
 
    int    CCameraControlInfo::GetGrabberIndex() const
    {
        return m_nGrabberIndex;
    }
 
    int    CCameraControlInfo::GetChannelIndex() const
    {
        return m_nChannelIndex;
    }
 
    int    CCameraControlInfo::GetFrameWidth() const
    {
        return m_nFrameWidth;
    }
 
    int    CCameraControlInfo::GetFrameHeight() const
    {
        return m_nFrameHeight;
    }
 
    int    CCameraControlInfo::GetFrameChannels() const
    {
        return m_nFrameChannels;
    }
 
    int    CCameraControlInfo::GetGrabCount() const
    {
        return m_nGrabCount;
    }
 
    int    CCameraControlInfo::GetFrameCount() const
    {
        return m_nFrameCount;
    }
 
    int    CCameraControlInfo::GetImageBufferCount() const
    {
        return m_nImageBufferCount;
    }
 
    int    CCameraControlInfo::GetAxisDirectionX() const
    {
        return m_nAxisDirectionX;
    }
 
    int    CCameraControlInfo::GetAxisDirectionY() const
    {
        return m_nAxisDirectionY;
    }
 
    double GetPixelResolution() const
    {
        return m_dPixelResolution;
    }
 
    double GetGainRed() const
    {
        return m_dGainRed;
    }
 
    double GetGainGreen() const
    {
        return m_dGainGreen;
    }
 
    double GetGainBlue() const
    {
        return m_dGainBlue;
    }
 
    CString GetFfcFilename() const
    {
        return m_strFfcFilename;
    }
 
    CString GetCameraFile() const
    {
        return m_strCameraFile;
    }
 
    BOOL GetCameraReverseX( ) const
    {
        return m_bCameraReverseMode;
    }
 
    // setter
    void SetIndex(int nIndex)
    {
        m_nIndex = nIndex;
    }
 
    void SetName(const CString& strName)
    {
        m_strName = strName;
    }
 
    void SetLibraryType(int nType)
    {
        m_nLibraryType = nType;
    }
 
    void SetConnectionPort(const CString& strPort)
    {
        m_strConnectionPort = strPort;
    }
 
    void SetFlipType(int nType)
    {
        m_nFlipType = nType;
    }
 
    void SetGrabberIndex(int nIndex)
    {
        m_nGrabberIndex = nIndex;
    }
 
    void SetChannelIndex(int nIndex)
    {
        m_nChannelIndex = nIndex;
    }
 
    void SetFrameWidth(int nWidth)
    {
        m_nFrameWidth = nWidth;
    }
 
    void SetFrameHeight(int nHeight)
    {
        m_nFrameHeight = nHeight;
    }
 
    void SetFrameChannels(int nChannels)
    {
        m_nFrameChannels = nChannels;
    }
 
    void SetGrabCount(int nCount)
    {
        m_nGrabCount = nCount;
    }
 
    void SetFrameCount(int nCount)
    {
        m_nFrameCount = nCount;
    }
 
    void SetImageBufferCount(int nCount)
    {
        m_nImageBufferCount = nCount;
    }
 
 
    void SetAxisDirectionX(int nDir)
    {
        m_nAxisDirectionX = nDir;
    }
 
    void SetAxisDirectionY(int nDir)
    {
        m_nAxisDirectionY = nDir;
    }
 
    void SetPixelResolution(double dRes)
    {
        m_dPixelResolution = dRes;
    }
 
    void SetGainRed(double dGain)
    {
        m_dGainRed = dGain;
    }
 
    void SetGainGreen(double dGain)
    {
        m_dGainGreen = dGain;
    }
 
    void SetGainBlue(double dGain)
    {
        m_dGainBlue = dGain;
    }
 
    void SetFfcFilename(const CString& strFilename)
    {
        m_strFfcFilename = strFilename;
    }
 
    void SetCameraFile(const CString& strCameraFile)
    {
        m_strCameraFile = strCameraFile;
    }
 
    void SetCameraReverseX(BOOL bMode)
    {
        m_bCameraReverseMode = bMode;
    }
        
protected:
    int            m_nIndex;                    // �ε���
    CString        m_strName;                    //ī�޶� �̸�
    
    int            m_nLibraryType;                // ���̺귯�� Ÿ��
    CString        m_strConnectionPort;        // ���� ��Ʈ
 
    int            m_nFlipType;                //ī�޶� FLIP Ÿ��
    int            m_nGrabberIndex;            //ī�޶� �׷��� �ε���
    int            m_nChannelIndex;            //ī�޶� ä�� �ε���
    int            m_nFrameWidth;                //ī�޶� ������ ����
    int            m_nFrameHeight;                //ī�޶� ������ ����
    int            m_nFrameChannels;            //ī�޶� ä�� ��
    int            m_nGrabCount;                //�׷��۹���
    int            m_nFrameCount;                //ī�޶� ������ ����
    int            m_nImageBufferCount;        //�̹��� ���� ����
    
    int            m_nAxisDirectionX;            //ī�޶� X�� ����
    int            m_nAxisDirectionY;            //ī�޶� Y�� ����
    double        m_dPixelResolution;            //ī�޶� �ػ�
    
    double        m_dGainRed;                    //ī�޶� Gain
    double        m_dGainGreen;                //ī�޶� Gain
    double        m_dGainBlue;                //ī�޶� Gain    
 
    CString        m_strFfcFilename;            //FFC Image
    CString        m_strCameraFile;
 
 
    BOOL        m_bCameraReverseMode;
};