从帧缓冲区GLSL读取到OpenCV

从帧缓冲区GLSL读取到OpenCV

我只是想给cvMat片段着色器生成的纹理,屏幕上什么也没有出现,我不知道问题出在哪里,这是驱动程序还是glreadPixels中的问题。我刚刚加载了TGA图像,到片段着色器,然后对四边形进行纹理处理,我想将该纹理提供给cvMat,因此我使用glReadPixesl然后生成了一个新纹理,并将其绘制在四边形上,但是什么都没有出现。

请注意,以下代码在每个帧处执行。

cv::Mat pixels;
    glPixelStorei(GL_PACK_ALIGNMENT, (pixels.step & 3) ? 1 : 4);
    glReadPixels(0, 0, 1024, 1024, GL_RGB, GL_UNSIGNED_BYTE, pixels.data);

    glEnable(GL_TEXTURE_2D);
    GLuint textureID;
    glGenTextures(1, &textureID);
       //glDeleteTextures(1, &textureID);

    // Create the texture
    glTexImage2D(GL_TEXTURE_2D,     // Type of texture
                 0,                 // Pyramid level (for mip-mapping) - 0 is the top level
                 GL_RGB,            // Internal colour format to convert to
                 1024,          // Image width  i.e. 640 for Kinect in standard mode
                 1024,          // Image height i.e. 480 for Kinect in standard mode
                 0,                 // Border width in pixels (can either be 1 or 0)
                 GL_RGB, // Input image format (i.e. GL_RGB, GL_RGBA, GL_BGR etc.)
                 GL_UNSIGNED_BYTE,  // Image data type
                 pixels.data);        // The actual image data itself

     glActiveTexture ( textureID );
     glBindTexture ( GL_TEXTURE_2D,textureID );
     glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );

最佳答案

textureID看起来像incomplete texture

GL_TEXTURE_MIN_FILTER设置为GL_NEARESTGL_LINEAR

或提供完整的mipmap。

关于c++ - 从帧缓冲区GLSL读取到OpenCV,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14981881/

10-09 04:57