iPad 2 后置摄像头视野

发布于 2025-01-05 20:51:57 字数 348 浏览 1 评论 0原文

我想在 iPad 2 后置摄像头的摄像头图像上渲染虚拟内容。为了实现此目的,使用 OpenGL ES 将内容转换为正确的屏幕坐标。

projectionMatrix =
    GLKMatrix4MakePerspective(GLKMathDegreesToRadians(FOV), 
                              16.0f / 9.0f, 0.05f, 5.0f);

问题在于视场参数。

有几篇关于 iPhone 或 iPad 1 的帖子;不过,我还没有找到适用于 iPad 2 的。iPad

2 在横向 16:9 高清模式下的视野是多少?

I want to render virtual content over the camera image from the back-facing camera of the iPad 2. To achieve this, OpenGL ES is used to transform the content into the correct screen coordinates.

projectionMatrix =
    GLKMatrix4MakePerspective(GLKMathDegreesToRadians(FOV), 
                              16.0f / 9.0f, 0.05f, 5.0f);

The problem is the field of view parameter.

There were several posts about iPhone or the iPad 1; however, I couldn't find one yet for iPad 2.

What is the field of view of the iPad 2 in landscape 16:9 HD mode?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡墨 2025-01-12 20:51:57

此博客可能会对您有所帮助:

http://hunter.pairsite.com/blogs/20110317/

特别是,

使用一些基本的三角学,这使我能够确定使用 iPad 2 后置摄像头拍摄的 4:3 静态照片具有大约 34.1 度的垂直视野和大约 44.5 度的水平视野。这大致相当于 35mm 相机上假设的 43mm 焦距镜头。

This blog will probably help you:

http://hunter.pairsite.com/blogs/20110317/

In particular,

Using some basic trigonometry, this allowed me to determine that 4:3 stills taken with the iPad 2 back camera have an approximate 34.1 degree vertical field of view and an approximate 44.5 degree horizontal field of view. This equates roughly to a hypothetical 43mm focal length lens on a 35mm camera.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文