2022-08-15 15:37:49 +00:00
|
|
|
package rpicamera
|
|
|
|
|
|
|
|
// Params is a set of camera parameters.
|
|
|
|
type Params struct {
|
2023-03-31 15:33:30 +00:00
|
|
|
CameraID int
|
|
|
|
Width int
|
|
|
|
Height int
|
|
|
|
HFlip bool
|
|
|
|
VFlip bool
|
|
|
|
Brightness float64
|
|
|
|
Contrast float64
|
|
|
|
Saturation float64
|
|
|
|
Sharpness float64
|
|
|
|
Exposure string
|
|
|
|
AWB string
|
|
|
|
Denoise string
|
|
|
|
Shutter int
|
|
|
|
Metering string
|
|
|
|
Gain float64
|
|
|
|
EV float64
|
|
|
|
ROI string
|
|
|
|
TuningFile string
|
|
|
|
Mode string
|
2023-05-28 15:29:37 +00:00
|
|
|
FPS float64
|
2023-03-31 15:33:30 +00:00
|
|
|
IDRPeriod int
|
|
|
|
Bitrate int
|
|
|
|
Profile string
|
|
|
|
Level string
|
|
|
|
AfMode string
|
|
|
|
AfRange string
|
|
|
|
AfSpeed string
|
|
|
|
LensPosition float64
|
|
|
|
AfWindow string
|
|
|
|
TextOverlayEnable bool
|
|
|
|
TextOverlay string
|
2022-08-15 15:37:49 +00:00
|
|
|
}
|