最通俗易懂的OpenGLES 透视投影理解

最通俗易懂的OpenGLES 透视投影理解

和正交投影的区别

  • 透视投影
    • 近大远小
  • 正交投影
    • 没有近大远小

指定绘图区域

  • 函数:GLES20.glViewport(0, 0, width, height);
  • 0,0表示左下角开始
  • width、height表示绘图的宽度和高度
  • 从而建立绘图区域坐标系向右为 x正方向、向上为y正方向,垂直屏幕向外为z正方向。

构建MVP矩阵

创建一个模型矩阵(可选ModelMatrix)

  • 主要用途:用于做物体移动变换。
  • 函数:
   float[] mModelMatrix = new float[16];
   Matrix.setIdentityM(mModelMatrix, 0);
   //Matrix.translateM(mModelMatrix, 0, 0, 0, 2);
   //Matrix.rotateM(mModelMatrix, 0, 135 + rotateX, 1, 0, 0);
   //Matrix.rotateM(mModelMatrix, 0, rotateY, 0, 1, 0);
   //Matrix.rotateM(mModelMatrix, 0, 45 + rotateZ, 0, 0, 1);
   //Matrix.translateM(mModelMatrix, 0, 0, 0, -2);   

设置眼睛的位置、方向、眼睛朝向(view矩阵)

  • 主要用途:设置视角,眼坐标系和相机坐标系(已视点为原点,视线方向为z+轴正方向)
  • 函数:
Matrix.setLookAtM(float[] viewMatrixValue, int rmOffset,
        float eyeX, float eyeY,float eyeZ,
        float centerX, float centerY, float centerZ, 
        float upX, float upY,float upZ) 
  • eyeX、eyeY、eyeZ代表的是照相机眼睛的位置(相对于绘图区域坐标系)
  • centerX、centerY、centerZ代表的是眼睛看向的目标点的位置,通过眼睛位置和目标点位置确定了方向。
  • upX、upY、upZ,摄像机UP向量XYZ分量,代表照相机朝向。该方向是相对于绘图区域坐标系的x、y、z方向所指定的位置,可以理解为照相机可以正着拿拍摄指定点、也可以旋转指定角度拍摄指定点,但是得到的画面肯定是不相同的。具体朝向由upX、upY、upZ三个变量决定。upX取值范围(-1,1)。

设置投影变换矩阵

  • 主要用途:由眼坐标可知,OpenGL管道首先会将目标从世界坐标变换到眼坐标,然后对视线范围外的部分进行裁剪。
  • 函数
 public static void frustumM(float[] projectionViewValue, int offset,
            float left, float right, float bottom, float top,
            float near, float far)
  1. 字面的意思是截锥体,通过near和far将相机预览范围裁剪为截锥体。
  2. near、far截锥体离相机最近的位置和离相机最远的位置,在此范围外的物体将会被裁剪,不会出现画面中(相对于眼坐标系)
  3. left、right、bottom、top指的是near平面相对绘图区域坐标系的区域坐标。比如说left 为-1,right为1代表near铺满整个屏幕画面。

使用案例(屏幕三维坐标系)

  • 创建v、p矩阵
  @Override
    public void onSurfaceChanged(GL10 gl, int width, int height) {
        glViewport(0, 0, width, height);

        float scale = 1.0f * width / height;

        //相对于屏幕坐标系将摄像头固定在(0,0,-5)方向,看向屏幕正中点(0,0,0),以屏幕向上为正方向(0,1,0)
        Matrix.setLookAtM(mVMatrix, 0, 0, 0, -5, 0f, 0f, 0, 0f, 1f, 0f);
        //创建一个透视视景体
        //注意:near,far都必须大于0,且二者不能相等,left、right、bottom、top 是near的left和right坐标
        //但是由于相机视点为(0,0,-5)而屏幕应该显示的是正方向(0,0,x)x大于0的方向的画面,所有left对应的屏幕坐标应该为负,right对应的坐标系为正,呈左右翻转的效果。
        //将near设置为4,far设置为8。由此可以得到视图可见区域为由视点(0,0,-5)出发的距离为4-8的区域内的物体。(注意不是由0,0,0点出发距离4-8的区域)。
        Matrix.frustumM(mProjMatrix, 0, scale, -scale, -1, 1, 4, 8);

    }
  • 创建MVP矩阵
     Matrix.setIdentityM(mModelMatrix, 0);
    //Matrix.rotateM(mModelMatrix, 0, 135 + rotateX, 1, 0, 0);
    //Matrix.rotateM(mModelMatrix, 0, rotateY, 0, 1, 0);
    //Matrix.rotateM(mModelMatrix, 0, 45 + rotateZ, 0, 0, 1);


    //mv矩阵
    Matrix.multiplyMM(mMVMatrix, 0, mVMatrix, 0, mModelMatrix, 0);


     //mvp矩阵
    // Calculate the projection and view transformation
    Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVMatrix, 0);

    //进行绑定
    GLES20.glUniformMatrix4fv(matrixHandle, 1, false, mMVPMatrix, 0);
  • 完成源码
class DirectionRenderer implements GLSurfaceView.Renderer {
    private int programRef;
    private FloatBuffer vertexBuffer;
    private FloatBuffer ptsVertexBuffer;

    private float vertexArray[] = {
            //z轴
            0.0f, 0.0f, 0.0f,
            1.0f, 0.0f, 0.0f,
            //y轴
            0.0f, 0.0f, 0.0f,
            0.0f, 1.0f, 0.0f,
            //z轴
            0.0f, 0.0f, 0.0f,
            0.0f, 0.0f, 1.0f
    };

    private float pointArray[] = {
            //原点
            0.0f, 0.0f, 0.0f,
            //z轴
            1.0f, 0.0f, 0.0f,
            //y轴
            0.0f, 1.0f, 0.0f,
            //z轴
            0.0f, 0.0f, 1.0f
    };

    private int positionHandle;
    private int mColorHandle;
    private int matrixHandle;
    private float[] mModelMatrix = new float[16];

    //定义一个16x16的透视矩阵
    private final float[] mProjMatrix = new float[16];
    //视图矩阵
    private final float[] mVMatrix = new float[16];
    //透视矩阵与视图矩阵变换后的总矩阵
    private final float[] mMVPMatrix = new float[16];
    private final float[] mMVMatrix = new float[16];
    private float rotateY;
    private float rotateZ;
    private float rotateX;

    @Override
    public void onSurfaceCreated(GL10 gl, EGLConfig config) {
        initGl();
        initGlProgram();
    }


    private void initGl() {
        glClearColor(0f, 0f, 0f, 0f);
        glEnable(GL_BLEND);
        glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
    }

    private void initGlProgram() {
        int vShaderRef = compileShader(GL_VERTEX_SHADER, Shaders.V_SHADER);
        int fShaderRef = compileShader(GL_FRAGMENT_SHADER, Shaders.F_SHADER);
        programRef = glCreateProgram();
        glAttachShader(programRef, vShaderRef);
        glAttachShader(programRef, fShaderRef);
        glLinkProgram(programRef);
        glUseProgram(programRef);


        ByteBuffer b = ByteBuffer.allocateDirect(vertexArray.length * 4);
        b.order(ByteOrder.nativeOrder());
        vertexBuffer = b.asFloatBuffer();
        vertexBuffer.put(vertexArray);
        vertexBuffer.position(0);

        ByteBuffer bufferByte = ByteBuffer.allocateDirect(pointArray.length * 4);
        bufferByte.order(ByteOrder.nativeOrder());
        ptsVertexBuffer = bufferByte.asFloatBuffer();
        ptsVertexBuffer.put(pointArray);
        ptsVertexBuffer.position(0);

        positionHandle = glGetAttribLocation(programRef, "aPosition");
        mColorHandle = glGetUniformLocation(programRef, "vColor");
        matrixHandle = glGetUniformLocation(programRef, "uModelMatrix");

    }

    private int compileShader(int type, String shaderCode) {
        int ref = glCreateShader(type);
        glShaderSource(ref, shaderCode);
        glCompileShader(ref);
        return ref;
    }


    @Override
    public void onSurfaceChanged(GL10 gl, int width, int height) {
        glViewport(0, 0, width, height);

        float scale = 1.0f * width / height;

        //相对于屏幕坐标系将摄像头固定在(0,0,-5)方向,看向屏幕正中点(0,0,0),以屏幕向上为正方向(0,1,0)
        Matrix.setLookAtM(mVMatrix, 0, 0, 0, -5, 0f, 0f, 0, 0f, 1f, 0f);
        //创建一个透视视景体
        //注意:near,far都必须大于0,且二者不能相等,left、right、bottom、top 是near的left和right坐标
        //但是由于相机视点为(0,0,-5)而屏幕应该显示的是正方向(0,0,x)x大于0的方向的画面,所有left对应的屏幕坐标应该为负,right对应的坐标系为正,呈左右翻转的效果。
        //将near设置为4,far设置为8。由此可以得到视图可见区域为由视点(0,0,-5)出发的距离为4-8的区域内的物体。
        Matrix.frustumM(mProjMatrix, 0, scale, -scale, -1, 1, 4, 8);

    }

    private void initModelMatrix() {

        Matrix.setIdentityM(mModelMatrix, 0);
        Matrix.rotateM(mModelMatrix, 0, 135 + rotateX, 1, 0, 0);
        Matrix.rotateM(mModelMatrix, 0, rotateY, 0, 1, 0);
        Matrix.rotateM(mModelMatrix, 0, 45 + rotateZ, 0, 0, 1);


        Matrix.multiplyMM(mMVMatrix, 0, mVMatrix, 0, mModelMatrix, 0);


        // Calculate the projection and view transformation
        Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVMatrix, 0);


        GLES20.glUniformMatrix4fv(matrixHandle, 1, false, mMVPMatrix, 0);

    }

    @Override
    public void onDrawFrame(GL10 unused) {
        render();
    }

    private float color[] = {1.0f, 0.0f, 0.0f, 1.0f};
    private float color2[] = {0.0f, 1.0f, 0.0f, 1.0f};
    private float color3[] = {0.0f, 0.0f, 1.0f, 1.0f};
    private float colorPoint[] = {0.0f, 0.0f, 0.0f, 1.0f};
    private float colorCenterPoint[] = {0.0f, 1.0f, 1.0f, 1.0f};

    int number;

    private void render() {
        number++;
        rotateX = number / 2;
        if (number == 720) {
            number = 0;
        }
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
        initModelMatrix();
        // 设置颜色
        glEnableVertexAttribArray(positionHandle);
        glVertexAttribPointer(positionHandle, 3, GL_FLOAT, false, 0, vertexBuffer);
        GLES20.glLineWidth(4);//设置线宽,线太窄时看不见

        GLES20.glUniform4fv(mColorHandle, 1, color, 0);
        glDrawArrays(GL_LINES, 0, 2);
        GLES20.glUniform4fv(mColorHandle, 1, color2, 0);
        glDrawArrays(GL_LINES, 2, 2);
        GLES20.glUniform4fv(mColorHandle, 1, color3, 0);
        glDrawArrays(GL_LINES, 4, 2);

        glVertexAttribPointer(positionHandle, 3, GL_FLOAT, false, 0, ptsVertexBuffer);
        GLES20.glLineWidth(10);//设置线宽,线太窄时看不见
        GLES20.glUniform4fv(mColorHandle, 1, colorCenterPoint, 0);
        glDrawArrays(GLES20.GL_POINTS, 0, 1);

        GLES20.glLineWidth(6);//设置线宽,线太窄时看不见
        GLES20.glUniform4fv(mColorHandle, 1, colorPoint, 0);
        glDrawArrays(GLES20.GL_POINTS, 1, 1);
        glDrawArrays(GLES20.GL_POINTS, 2, 1);
        glDrawArrays(GLES20.GL_POINTS, 3, 1);

        glDisableVertexAttribArray(positionHandle);
    }

    public void setRotateX(float rotate) {
        this.rotateX = rotate;
    }

    public void setRotateZ(float rotate) {
        this.rotateY = rotate;

    }

    public void setRotateY(float rotate) {
        this.rotateZ = rotate;

    }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,837评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,551评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,417评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,448评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,524评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,554评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,569评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,316评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,766评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,077评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,240评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,912评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,560评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,176评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,425评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,114评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,114评论 2 352