File: camera_const_linux.go

package info (click to toggle)
cam2ip 1.6-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 280 kB
  • sloc: sh: 81; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// +build !cv2,!cv4

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
)