VideoCapture Constructor (Int32, VideoCaptureAPI) |
http://www.emgu.com Create a capture using the specific camera
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic VideoCapture(
int camIndex = 0,
VideoCaptureAPI captureApi = 0
)
Public Sub New (
Optional camIndex As Integer = 0,
Optional captureApi As VideoCaptureAPI = 0
)
public:
VideoCapture(
int camIndex = 0,
VideoCaptureAPI^ captureApi = 0
)
new :
?camIndex : int *
?captureApi : VideoCaptureAPI
(* Defaults:
let _camIndex = defaultArg camIndex 0
let _captureApi = defaultArg captureApi 0
*)
-> VideoCapture
Parameters
- camIndex (Optional)
- Type: SystemInt32
The index of the camera to create capture from, starting from 0 - captureApi (Optional)
- Type: Emgu.CVVideoCaptureAPI
The preferred Capture API backends to use. Can be used to enforce a specific reader implementation if multiple are available.
See Also