blob: c10915465a91ed6b69443ca55012f3d0f3dad3dc [file] [log] [blame]
Parker Schuh24ee58d2017-03-11 16:13:23 -08001syntax = "proto2";
2
3package aos.vision;
4
5message CameraParams {
6 // Width of the image.
7 optional int32 width = 1 [default = 1280];
8
9 // Height of the image.
10 optional int32 height = 2 [default = 960];
11
12 // Exposure setting.
13 optional int32 exposure = 3 [default = 10];
14
15 // Brightness setting.
16 optional int32 brightness = 4 [default = 128];
17
18 // Hardware gain multiplier on pixel values.
19 optional int32 gain = 5 [default = 0];
20
21 // Frames per second to run camera.
22 optional int32 fps = 6 [default = 30];
23}