|
Re: No Image Available Exception
Here is a simple example of the code i am using. It can't get much simpler
AxisCamera c = AxisCamera.getInstance();
// this works -- checked camera settings via web browser
c.writeBrightness(75);
try {
ColorImage ci = c.getImage();
} catch (AxisCameraException ex) {
// always generates exception
}
|