private void ScanView_CameraOpened(object sender, CameraOpenedEventArgs args)
 {
     Log.Debug(TAG, $"Camera opened with resolution {args.Width} x {args.Height}.");
 }
Ejemplo n.º 2
0
 private void _scanView_CameraOpened(object sender, CameraOpenedEventArgs e)
 {
     //_scanView.StartScanning();
 }
Ejemplo n.º 3
0
 private void Camera_Opened(object sender, CameraOpenedEventArgs a)
 {
     Log.Debug(TAG, "Camera opened successfully. Frame resolution " + a.Width + " x " + a.Height);
 }