我正在使用佳能EDSDK_64 v2.15。我能够在Windows7下使用简单的消息循环接收Canon SDK发送的事件。例如,当我想拍照并等待图像数据时,我使用:
xCanonError = EdsSendCommand(xCanonEOS, kEdsCameraCommand_TakePicture, 0);
if(xCanonError != EDS_ERR_OK)
{
AddLogText(L"sending command TakePicture - error - "+SmartCanon::GetCanonSDKError(xCanonError));
return false;
}
MSG msg;
while(eState == detector_state_busy)
{
if (::GetMessage(&msg, NULL, NULL, NULL) == -1)
{
AddLogText(L" - capture image - waiting for an image - GetMessage() error - " + std::to_wstring(HRESULT_FROM_WIN32(GetLastError())));
break;
}
else
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
Sleep(2);
};
这就是我注册对象处理程序的方式:
xCanonError = EdsSetObjectEventHandler(xCanonEOS, kEdsObjectEvent_All, CSDKHandleObjectEvent, this);
if (xCanonError != EDS_ERR_OK)
{
AddLogText(L"EdsSetObjectEventHandler() - error - "+GetCanonSDKError(xCanonError));
EdsRelease(xCanonEOS);
xCanonEOS = NULL;
EdsTerminateSDK();
return;
}
xCanonEOS
为EdsCameraRef
的位置; this
是一个指向类的指针,我用它来完成佳能相机的所有工作。这是我的对象事件处理函数:
EdsError EDSCALLBACK CSDKHandleObjectEvent(EdsObjectEvent p_sCSDKEvent, EdsBaseRef p_sCSDKObject, EdsVoid* p_pCSDKData)
{
// my class for working with Canon camera
SmartCanon::TDetectorCANON* v_psDetectorCanonEOS = reinterpret_cast<SmartCanon::TDetectorCANON*>(p_pCSDKData);
// a lot of irrelevant code...
v_psDetectorCanonEOS->SetState(detector_state_idle);
return EDS_ERR_OK;
}
我的问题是,相同的代码在Windows 8.1下无效。程序只是进入while
循环,永远不会调用注册的回调函数。
我正在使用VS2013 x64编译器。我的相机是佳能EOS 60D。我的应用程序正在使用MFC库。
有人可以指出我做错了什么或提供解决方法来解决这个问题吗?
答案 0 :(得分:-1)
我遇到了同样的问题,32位版本解决了回调函数。