Why do I get the following error:imaqreset is not included in your installed products. These products offer 'imaqreset': Image Acquisition Toolbox? Evan though I have the image acquisition toolbox installed.

조회 수: 2 (최근 30일)
Why do I get the following error:imaqreset is not included in your installed products. These products offer 'imaqreset': Image Acquisition Toolbox Evan though I have the image acquisition toolbox installed.

답변 (1개)

Image Analyst
Image Analyst 2016년 4월 1일
What does it show when you say "ver" on the command line? Is the toolbox listed there?
  댓글 수: 5
Walter Roberson
Walter Roberson 2016년 4월 1일
It means that there a failure was encountered while executing the BytesAvailableFcn callback, and to avoid a continued stream of errors, MATLAB has disabled the callback.
Your code has
obj.bytesavailablefcncount
which uses the wrong property name. The correct property name is
obj.BytesAvailableFcnCount
Tanya Tabachnik
Tanya Tabachnik 2016년 4월 4일
I made the change and get the following: Error in motiondisplay>baf (line 191) if sum(diff(zinds)~=12)>1||(obj.BytesAvailableFcnCount-zinds(end)+1)~=12
Error in instrcb (line 36) feval(val{1}, obj, eventStruct, val{2:end});
Warning: The BytesAvailableFcn is being disabled. To enable the callback property either connect to the hardware with FOPEN or set the BytesAvailableFcn property.

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by