warning when connecting a cam
7 views (last 30 days)
Show older comments
I get this warning wen connecting a cam
Warning: The BacklightCompensation property was unable to be set to the requestedvalue and has been adjusted. Check the current value before continuing your work.
can u tell why i get this
0 Comments
Answers (2)
Jan
on 25 Oct 2011
The message means, that you have tried to set the BacklightCompensatoion to a value, which is not recognized. Without seeing the code, there is no chance to give a meaningful answer.
1 Comment
Bryan
on 6 Aug 2015
I've seen something similar, except in my case it was the ColorEnable property. This happens whether I use the imaq tool or do it programmatically. The warning comes up on the command that creates the videoinput object, e.g.:
vid = videoinput('winvideo', 2, 'RGB24_1280x1024');
Since, apart from querying the system as to what videoinput adaptors and formats are available, this is the first real command that does anything, I'm guessing this is a bug in the constructor for the videoinput class. Fortunately, it only throws a warning and not an error, and it's possible to proceed from that point. Is this similar to your experience?
Image Analyst
on 25 Oct 2011
Is that in your code? Or is that what the imaqtool tells you? Are you even using imagtool to set your settings? The imaqtool adapter should have sliders to set the various parameters to only "legal" values and so you should never see that message if you used imaqtool. Of course if you did it yourself, you're free to pass any value whatsoever to the "BacklightCompensatoion" property, and it appears that you tried to use a value that is not allowed. For example it wants values in the range 0-300 and you passed in -20 or 569 or 3456. The adapter that imaqtool uses may have been written by your camera manufacturer, not the Mathworks, so you may have to contact them to obtain the legal values, or else check the software development kit documentation for that camera.
7 Comments
Image Analyst
on 28 Oct 2011
Pat, look at my questions again - those are the sentences with a question mark after them. I'll repeat them here: "Is that in your code? Or is that what the imaqtool tells you? Are you even using imagtool to set your settings?" Now, did you answer any of them? I can't find anywhere where you mentioned if you were using imaqtool functionality or not. OK, let me try to rephrase this: "Are you running a script, or are you running the imaqtool utility?"
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!