如何以编程方式放大摄像头的图像?
我希望能够以编程方式调整相机源的缩放级别。
我不知道手机摄像头是否具有光学变焦功能,也不知道 Windows Phone 7 是否允许程序员控制它(如果有的话)。如果是的话,请告诉我如何做。
如果没有,我希望能够以数字方式放大相机输入(数字变焦)。如果能有一个关于如何以编程方式执行此操作的指针就太好了。谢谢!
I want to be able to programmatically adjust the zoom level of the camera feed.
I do not know whether cell-phone cameras have optical zoom or not and if Windows phone 7 lets a programmer control it (if it is there). If it does, please let me know how.
If it doesn't, I want to able to digitally magnify the camera feed (digital zoom). A pointer to how to do this programmatically would be great. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows Phone 7 硬件规格不包括光学变焦。您可以通过 CaptureSource 在 Silverlight 代码中访问摄像头的实时图像,如 MSDN 教程。您可以通过 捕获图像AsyncCaptureImage,它为您提供了一个WriteableBitmap然后可以使用数字缩放。
The Windows Phone 7 hardware specification does not include optical zoom. You can access the live images from the camera in Silverlight code via a CaptureSource as described in this MSDN tutorial. You can capture images via AsyncCaptureImage, which provides you with a WriteableBitmap which you can then use to zoom digitally.