Android相机takePicture()方法执行时间
我是 Android 开发应用程序的新手。
我们目前正在使用 Android 创建一个机器人,可以访问相机进行图像处理。
我的问题是:Camera类中的takePicture()方法从拍照到存储图像数据需要多长时间才能完成执行?它是恒定的还是您需要指定它?
如果您提供答案的链接,我将不胜感激。谢谢。
I'm new to developing apps in Android.
We are currently creating a robot using Android that accesses the camera for image processing.
My question is: How long will the takePicture() method in Camera class will finish executing from the time it take a picture to the time it stores the image data? Is it constant or you need to specify it?
I would appreciate it if you provide links with your answers. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于手机本身。您应该做的是将图像保存在
AsyncTask
中,这样您就不必依赖 UI 线程。It depends on the phone itself. What you should do is to save the image in an
AsyncTask
so you don't have to rely on the UI thread.