我正在使用位于此处的Windows Universal Sample for OCR:
https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/OCR/cs
特别是OcrCapturedImage.xaml.cs
看起来相机经常变得没有焦点,模糊,并且远远不如原生相机应用程序那么好.如何设置自动对焦和/或点按以修复曝光?
我到目前为止所看到的是查看其他有助于设置分辨率的相机样本,但我找不到有关焦点/曝光的任何信息.
更新:
我认为
await mediaCapture.VideoDeviceController.FocusControl.FocusAsync();
和
await mediaCapture.VideoDeviceController.ExposureControl.SetAutoAsync(true);
但是,如果有人知道如何挖掘某个区域并相应地应用焦点/曝光,那么这不起作用(不做任何事情 - 仍然模糊等)并且可以建立起来.
原生相机:
应用相机:
根据答案更新:
我一定是把我的焦点方法放在错误的位置,因为我的原始更新代码有效.Sergi也有效.我想将tapped事件与它结合使用,如下所示:
Point tapped=e.GetPosition(null); //Where e is TappedRoutedEventArgs from a tapped event method on my preview screen await mediaCapture.VideoDeviceController.RegionsOfInterestControl.ClearRegionsAsync(); await mediaCapture.VideoDeviceController.RegionsOfInterestControl.SetRegionsAsync(new[] { new RegionOfInterest() { Bounds = new Rect(tapped.X, tapped.Y, 0.02, 0.02) } }); //Throws Parameter Incorrect
但它抛出参数不正确.另外,如何在预览屏幕上显示矩形的矩形,以便用户知道感兴趣的区域有多大?
这是一个很棒的链接https://github.com/Microsoft/Windows-universal-samples/blob/master/Samples/CameraManualControls/cs/MainPage.Focus.xaml.cs
使用类的Configure
方法配置自动对焦FocusControl
.
mediaCapture.VideoDeviceController.FocusControl.Configure( new FocusSettings { Mode = FocusMode.Auto }); await mediaCapture.VideoDeviceController.FocusControl.FocusAsync();
为了专注于某个区域,RegionOfInterestControl
可以使用该属性.它具有SetRegionsAsync
添加RegionOfInterest
实例集合的方法.RegionOfInterest
具有Bounds
定义焦点区域的属性.此示例显示如何在中心设置焦点:
// clear previous regions of interest await mediaCapture.VideoDeviceController.RegionOfInterestControl.ClearRegionsAsync(); // focus in the center of the screen await mediaCapture.VideoDeviceController.RegionOfInterestControl.SetRegionsAsync( new [] { new RegionOfInterest() {Bounds = new Rect(0.49,0.49,0.02,0.02) } });