SetChunkMode
|
![]() ![]() ![]() |
|
[in] unsigned int chunkSize
|
Integer value specifying the total size of the chunk data fields in bytes. If zero, no chunk data will be added to image frames.
|
|
[in] unsigned int chunkCount
|
Integer value specifying the amount of chunk data fields. If zero, no chunk data will be added to image frames.
|
|
[in] unsigned int channelIndex
|
Index of the associated stream channel. Possible values are 0 or 1.
|
|
S_OK
|
Success
|
E_FAIL
|
Failure
|
|
static CGevCamera* m_pCamera;
|
m_pCamera = createCamera();
|
m_pCamera->SetStreamChannelCount(1);
|
.......
|
int iSize=sizeof (int) + sizeof (float);
|
m_pCamera->SetChunkMode(iSize, 2);
|
|