Files
cam2ip/camera/camera_const_linux.go
Milan Nikolic fa99c12ec1 Add new tags
2022-10-15 20:56:14 +02:00

23 lines
555 B
Go

//go:build !cv2 && !cv4 && !android
// +build !cv2,!cv4,!android
package camera
import (
"github.com/korandiz/v4l"
)
// Property identifiers.
const (
PropBrightness = v4l.CtrlBrightness
PropContrast = v4l.CtrlContrast
PropSaturation = v4l.CtrlSaturation
PropHue = v4l.CtrlHue
PropGain = v4l.CtrlGain
PropExposure = v4l.CtrlExposure
PropWhiteBalanceU = v4l.CtrlWhiteBalance
PropSharpness = v4l.CtrlSharpness
PropWhiteBalanceV = v4l.CtrlDoWhiteBalance
PropBacklight = v4l.CtrlBacklightCompensation
)