What is the meaning of CvCaptureQueueFrame return value: 5
Hello Friends,
my maxframeCounter = 100,000;
my ErrCode = CvCaptureQueueFrame((myCamera.handle),&(myCamera.Frame),NULL);
The Return Value of ErrCode = 5;
What is the meaning of this return Value = 5, and what precaution should i take to overcome from this value from the document the return value of ErrCode Supposed to any one from:
- ePvErrSucess
2.ePvErrUnplugged
3.ePvErrBadSequence
4.ePvErrQueueFull
From The Document AVT/Prosilica PvAPI Manual
PageNo. 51
Regards Kaushal
Hello Friends,
my function PvCaptureQueueFrame(), now it start returning 0 mean Function successful as mantioned in AVT/Prosilica PvAPI Manula Page 51 return Value
i have do the following
while((errCode = PvCaptureWaitForFrameDone((myCamera.Handle,&(myCamera.Frame[i]),2000)) == ePvErrTimeOut)
cout<<"Waiting for Frame to return to HOST"<<endl
and the Code Output is always:
Waiting for Frame to return to HOST
Waiting for Frame to return to HOST
Waiting for Frame to return to HOST Waiting for Frame to return to HOST
Waiting for Frame to return to HOST
Waiting for Frame to return to HOST
Guide me in this case what should i do.
Regards
kaushal
Did you solve this already? I have the same thing