| | |
| | | |
| | | m_strFfcFilename = _T(""); |
| | | m_strCameraFile = _T(""); |
| | | m_bCameraReverseMode = FALSE; |
| | | } |
| | | |
| | | |
| | |
| | | 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; |
| | | } |
| | | |
| | |
| | | |
| | | strValue = strItemName + _T("_FFC_FILE_NAME"); |
| | | pFile->SetItem(strValue, m_strFfcFilename); |
| | | |
| | | strValue = strItemName + _T("_CAMERA_REVERSE_X"); |
| | | pFile->SetItem(strValue, m_bCameraReverseMode); |
| | | |
| | | return TRUE; |
| | | } |
| | |
| | | return m_strCameraFile; |
| | | } |
| | | |
| | | BOOL GetCameraReverseX( ) const |
| | | { |
| | | return m_bCameraReverseMode; |
| | | } |
| | | |
| | | // setter |
| | | void SetIndex(int nIndex) |
| | | { |
| | |
| | | m_strCameraFile = strCameraFile; |
| | | } |
| | | |
| | | void SetCameraReverseX(BOOL bMode) |
| | | { |
| | | m_bCameraReverseMode = bMode; |
| | | } |
| | | |
| | | protected: |
| | | int m_nIndex; // 인덱스 |
| | | CString m_strName; //카메라 이름 |
| | | int m_nIndex; // ��� |
| | | CString m_strName; //ī�� �̸� |
| | | |
| | | int m_nLibraryType; // 라이브러리 타입 |
| | | CString m_strConnectionPort; // 연결 포트 |
| | | 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_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; //카메라 해상도 |
| | | int m_nAxisDirectionX; //� X�� ���� |
| | | int m_nAxisDirectionY; //� Y�� ���� |
| | | double m_dPixelResolution; //ī�� �ػ� |
| | | |
| | | double m_dGainRed; //카메라 Gain |
| | | double m_dGainGreen; //카메라 Gain |
| | | double m_dGainBlue; //카메라 Gain |
| | | double m_dGainRed; //� Gain |
| | | double m_dGainGreen; //� Gain |
| | | double m_dGainBlue; //� Gain |
| | | |
| | | CString m_strFfcFilename; //FFC Image |
| | | CString m_strCameraFile; |
| | | |
| | | |
| | | BOOL m_bCameraReverseMode; |
| | | }; |
| | | |