mirror of
https://github.com/gen2brain/cam2ip.git
synced 2025-12-15 11:58:33 +00:00
48 lines
639 B
Go
48 lines
639 B
Go
//go:build cv2 || cv4
|
|
// +build cv2 cv4
|
|
|
|
package camera
|
|
|
|
// Property identifiers.
|
|
const (
|
|
PropPosMsec = iota
|
|
PropPosFrames
|
|
PropPosAviRatio
|
|
PropFrameWidth
|
|
PropFrameHeight
|
|
PropFps
|
|
PropFourcc
|
|
PropFrameCount
|
|
PropFormat
|
|
PropMode
|
|
PropBrightness
|
|
PropContrast
|
|
PropSaturation
|
|
PropHue
|
|
PropGain
|
|
PropExposure
|
|
PropConvertRgb
|
|
PropWhiteBalanceU
|
|
PropRectification
|
|
PropMonocrome
|
|
PropSharpness
|
|
PropAutoExposure
|
|
PropGamma
|
|
PropTemperature
|
|
PropTrigger
|
|
PropTriggerDelay
|
|
PropWhiteBalanceV
|
|
PropZoom
|
|
PropFocus
|
|
PropGuid
|
|
PropIsoSpeed
|
|
PropMaxDc1394
|
|
PropBacklight
|
|
PropPan
|
|
PropTilt
|
|
PropRoll
|
|
PropIris
|
|
PropSettings
|
|
PropBuffersize
|
|
)
|