1

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?

4

1 に答える 1

4

このブログはおそらくあなたを助けるでしょう:

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

特に、

いくつかの基本的な三角法を使用して、iPad 2 の背面カメラで撮影した 4:3 の静止画には、垂直方向の視野が約 34.1 度、水平方向の視野が約 44.5 度あることがわかりました。これは、35mm カメラの架空の焦点距離 43mm レンズにほぼ相当します。

于 2012-02-13T13:33:28.427 に答える