|
Re: Camera Gradually Changes Color Based on Lighting
Sorry, I use the M1011 and M1013 at work for security cams and know the interface so I posted what I assumed would be right. Last year (my first year as a mentor) we used the M1011 and just mucked with the on-camera settings as I recollect.
Digging into the AxisCamera class's source code I see that it shoves the camera config back at the camera via an HTTP request after every single frame -if- there was a change. So, basically on your first pull it's going to revert back to the defaults in AxisCamera.java because on creation it assumes the config params are "dirty" and need to be pushed to the camera.
Still, not sure why setting the camera to "hold current" isn't working. I might try and find time tomorrow to construct a URL as the AxisCamera code does and manually hit some of mine at work and see if they actually change config.
That said, and this might be a HORRIBLE suggestion, but the AxisCamera class is using the username FRC and password FRC to do everything. If you neutered that account on the Axis camera to be readonly/viewer(whatever they call it) instead of an admin user it couldn't change the camera settings on you but it'll still be able to read images.
|