We’ve been using setExposureManual(10)
to set our camera exposure low for detecting vision targets on a Raspberry Pi. However, recently we started seeing a problem where the camera images are overexposed. The exposure seems wrong even when configuring via the web UI.
Exposure auto:
Exposure 1:
Exposure 0:
Any value higher than 1 looks the same as 1. (My initial guess would be that it’s expecting a value between 0–1 rather than 0–100, but the API accepts an integer and when I make a manual web request to change the configuration setting to 0.2, it complains “invalid integer”.)
Not sure it’s correlated, but we did recently install the 2019.3.1 Raspberry Pi software image (and copied the new .jar files into our existing code). However we think we might’ve seen the problem even before installing the update. Is there something in the update which could have broken manual exposure settings, or is there some other camera configuration that affects how the exposure value (0-100) works?
Below is the contents of http://frcvision.local:1181/settings.json
when the exposure is set to Manual Mode with a value of 1:
{
"controls": [
{
"name": "connect_verbose",
"id": "1",
"type": "2",
"min": "0",
"max": "1",
"step": "1",
"default": "1",
"value": "1"},
{
"name": "raw_brightness",
"id": "2",
"type": "2",
"min": "30",
"max": "255",
"step": "1",
"default": "-8193",
"value": "138"},
{
"name": "brightness",
"id": "3",
"type": "2",
"min": "0",
"max": "100",
"step": "1",
"default": "-3654",
"value": "48"},
{
"name": "raw_contrast",
"id": "4",
"type": "2",
"min": "0",
"max": "10",
"step": "1",
"default": "57343",
"value": "5"},
{
"name": "contrast",
"id": "5",
"type": "2",
"min": "0",
"max": "100",
"step": "1",
"default": "573430",
"value": "50"},
{
"name": "raw_saturation",
"id": "6",
"type": "2",
"min": "0",
"max": "200",
"step": "1",
"default": "57343",
"value": "83"},
{
"name": "saturation",
"id": "7",
"type": "2",
"min": "0",
"max": "100",
"step": "1",
"default": "28671",
"value": "41"},
{
"name": "white_balance_temperature_auto",
"id": "8",
"type": "1",
"min": "0",
"max": "1",
"step": "1",
"default": "1",
"value": "1"},
{
"name": "power_line_frequency",
"id": "9",
"type": "8",
"min": "0",
"max": "2",
"step": "1",
"default": "2",
"value": "2",
"menu": {"0": "Disabled", "1": "50 Hz", "2": "60 Hz"}
},
{
"name": "white_balance_temperature",
"id": "10",
"type": "2",
"min": "2800",
"max": "10000",
"step": "1",
"default": "57343",
"value": "4500"},
{
"name": "raw_sharpness",
"id": "11",
"type": "2",
"min": "0",
"max": "50",
"step": "1",
"default": "57343",
"value": "25"},
{
"name": "sharpness",
"id": "12",
"type": "2",
"min": "0",
"max": "100",
"step": "1",
"default": "114686",
"value": "50"},
{
"name": "backlight_compensation",
"id": "13",
"type": "2",
"min": "0",
"max": "10",
"step": "1",
"default": "57343",
"value": "0"},
{
"name": "exposure_auto",
"id": "14",
"type": "8",
"min": "0",
"max": "3",
"step": "1",
"default": "0",
"value": "1",
"menu": {"0": "", "1": "Manual Mode", "2": "", "3": "Aperture Priority Mode"}
},
{
"name": "raw_exposure_absolute",
"id": "15",
"type": "2",
"min": "5",
"max": "20000",
"step": "1",
"default": "156",
"value": "204"},
{
"name": "exposure_absolute",
"id": "16",
"type": "2",
"min": "0",
"max": "100",
"step": "1",
"default": "0",
"value": "1"},
{
"name": "pan_absolute",
"id": "17",
"type": "2",
"min": "-201600",
"max": "201600",
"step": "3600",
"default": "0",
"value": "0"},
{
"name": "tilt_absolute",
"id": "18",
"type": "2",
"min": "-201600",
"max": "201600",
"step": "3600",
"default": "0",
"value": "0"},
{
"name": "zoom_absolute",
"id": "19",
"type": "2",
"min": "0",
"max": "10",
"step": "1",
"default": "57343",
"value": "0"}
],
"modes": [
{
"pixelFormat": "YUYV",
"width": "640",
"height": "480",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "480",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "480",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "480",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "480",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "1280",
"height": "720",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "1280",
"height": "720",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "960",
"height": "544",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "960",
"height": "544",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "960",
"height": "544",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "448",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "448",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "448",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "448",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "360",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "360",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "360",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "360",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "640",
"height": "360",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "424",
"height": "240",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "424",
"height": "240",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "424",
"height": "240",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "424",
"height": "240",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "424",
"height": "240",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "352",
"height": "288",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "352",
"height": "288",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "352",
"height": "288",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "352",
"height": "288",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "352",
"height": "288",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "320",
"height": "240",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "320",
"height": "240",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "320",
"height": "240",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "320",
"height": "240",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "320",
"height": "240",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "600",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "600",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "800",
"height": "600",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "176",
"height": "144",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "176",
"height": "144",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "176",
"height": "144",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "176",
"height": "144",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "176",
"height": "144",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "160",
"height": "120",
"fps": "30"},
{
"pixelFormat": "YUYV",
"width": "160",
"height": "120",
"fps": "20"},
{
"pixelFormat": "YUYV",
"width": "160",
"height": "120",
"fps": "15"},
{
"pixelFormat": "YUYV",
"width": "160",
"height": "120",
"fps": "10"},
{
"pixelFormat": "YUYV",
"width": "160",
"height": "120",
"fps": "7"},
{
"pixelFormat": "YUYV",
"width": "1280",
"height": "800",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "480",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "480",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "480",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "480",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "480",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "1280",
"height": "720",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "1280",
"height": "720",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "1280",
"height": "720",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "1280",
"height": "720",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "1280",
"height": "720",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "960",
"height": "544",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "960",
"height": "544",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "960",
"height": "544",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "960",
"height": "544",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "960",
"height": "544",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "448",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "448",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "448",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "448",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "448",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "360",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "360",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "360",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "360",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "640",
"height": "360",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "600",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "600",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "600",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "600",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "800",
"height": "600",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "416",
"height": "240",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "416",
"height": "240",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "416",
"height": "240",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "416",
"height": "240",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "416",
"height": "240",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "352",
"height": "288",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "352",
"height": "288",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "352",
"height": "288",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "352",
"height": "288",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "352",
"height": "288",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "176",
"height": "144",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "176",
"height": "144",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "176",
"height": "144",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "176",
"height": "144",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "176",
"height": "144",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "320",
"height": "240",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "320",
"height": "240",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "320",
"height": "240",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "320",
"height": "240",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "320",
"height": "240",
"fps": "7"},
{
"pixelFormat": "MJPEG",
"width": "160",
"height": "120",
"fps": "30"},
{
"pixelFormat": "MJPEG",
"width": "160",
"height": "120",
"fps": "20"},
{
"pixelFormat": "MJPEG",
"width": "160",
"height": "120",
"fps": "15"},
{
"pixelFormat": "MJPEG",
"width": "160",
"height": "120",
"fps": "10"},
{
"pixelFormat": "MJPEG",
"width": "160",
"height": "120",
"fps": "7"}
]
}