char buffer[64] = { NULL };
int nByte = 0;
// ボードとカメラのAcquisitionStart/Stopを個別に実行できるよう設定
AcapSetInfo(hAcap, ch, ACL_CXP_ACQUISITION_CONTROL, 0, 1);
// カメラへ直接コマンドアクセスするためオープン
AcapSerialOpen(hAcap, ch);
// カメラのAcquisitionを開始
AcapSerialWrite(hAcap, ch, TRUE, (char*)"AcquisitionStart Execute", (char*)"GenICam", NULL);
// Execeuteコマンド完了の確認
AcapSerialWrite(hAcap, ch, TRUE, (char*)"AcquisitionStart IsDone", (char*)"GenICam", NULL);
do {
// IsDoneのステータスを取得
AcapSerialRead(hAcap, ch, TRUE, 3000, 64, NULL, buffer, &nByte);
} while (strcmp(buffer, "true") != 0);
while (_kbhit() == 0)
{
int frameNum = 0, numOfLines = 0, bufferIndex = 0;
void* pImage = NULL;
// ボードのAcquisitionを開始
AcapGrabStart(hAcap, ch, 0);
// 画像データが取得できるまで待機
AcapWaitEvent(hAcap, ch, ACL_INT_FRAMEEND, 3000);
// 画像データのインデックス番号を取得
AcapGetFrameNo(hAcap, ch, &frameNum, &numOfLines, &bufferIndex);
// 画像データのバッファアドレスを取得
AcapGetBufferAddress(hAcap, ch, ACL_IMAGE_PTR, bufferIndex, &pImage);
// ボードのAcquisitionを停止
AcapGrabStop(hAcap, ch);
}
// カメラのAcquisitionを停止
AcapSerialWrite(hAcap, ch, TRUE, (char*)"AcquisitionStop Execute", (char*)"GenICam", NULL);
// Execeuteコマンド完了の確認
AcapSerialWrite(hAcap, ch, TRUE, (char*)"AcquisitionStop IsDone", (char*)"GenICam", NULL);
do {
// IsDoneのステータスを取得
AcapSerialRead(hAcap, ch, TRUE, 3000, 64, NULL, buffer, &nByte);
} while (strcmp(buffer, "true") != 0);
// ボードとカメラのAcquisitionStart/Stopの設定を元に戻す
AcapSetInfo(hAcap, ch, ACL_CXP_ACQUISITION_CONTROL, 0, 0);
|