glReadPixels is an OpenGL API function to read pixels data from source framebuffer to destination memory buffer. When FBO is supported, the source could be FBO; when PBO is supported, the destination could be PBO.
0
votes
0answers
20 views
glReadPixels fails when hidden a element
When i touch the screen glReadpixels return the RGB of the pixel. After the touch i call a method to hidden element that has the same RGB values. After this if i touch the screen glReadpixels returns ...
1
vote
2answers
131 views
Displaying a screen shot generated UIImage is not displaying in UIImageView (for device only)
I am trying to save an OpenGL buffer (whats currently displayed in the view) to the device's photo library. The code snippet below works fine on the simulator. But for the actual device it is ...
0
votes
0answers
29 views
glTexImage2D giving GL_INVALID_VALUE because width or height cannot be represented as 2k + 2
I have a screenshot taken from the first opengl canvas which i need to draw in the second opengl canvas. I have taken the screenshot using glReadPixels:
glReadPixels(posx, posy, pageWidth , ...
0
votes
0answers
50 views
Strange behavior of glReadPixel on samsung galaxy ace
I have code in my app
mEGLContext = mEGL.eglCreateContext(mEGLDisplay, mEGLConfig, EGL_NO_CONTEXT, attrib_list);
GL10 gl = (GL10) mEGLContext.getGL();
gl.glReadPixels(0, 0, 10, 10, GL10.GL_RGBA, ...
0
votes
1answer
90 views
how to read opegl clorbuffer and depth buffer quickly?
I have to read color buffer and depth buffer every frame. I know the glReadPixels function is very slow, so I would like to know if there is a faster way to do the reading.
0
votes
3answers
170 views
Finding the right context to take a screenshot with glReadPixels()
I'm trying to read directly from the frame buffer via glReadPixels() so that I can take a screenshot from whatever is on my screen.
I'm not using a GUI, instead it should print the raw content of the ...
1
vote
1answer
196 views
GL_INVALID_FRAMEBUFFER_OPERATION Android NDK GL FrameBuffer and glReadPixels returns 0 0 0 0
My C++ code was designed for iOS and now I ported it to NDK with minimal modifications.
I bind frame buffer and call
glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
then I ...
1
vote
1answer
256 views
Drawing an OpenGL scene to C# bitmap; off-screen gets clipped
I draw a complex 2D scene to an OpenGL window. I would like the user to be able to take a screenshot of the scene and save it as a JPG. However, I would like them to be able to specify that the scene ...
1
vote
2answers
283 views
glReadPixels alpha value issue
I am having issues reading back the alpha channel from my OpenGL texture on Android. I call glReadPixels this way:
glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
and just as ...
0
votes
2answers
138 views
How to stop glReadPixels converting data format by CPU?
As we know, glReadPixels() will block the pipeline and use CPU to convert data format, especially when I want to read depth value out to system RAM.
I tried PBO provided by Songho, but I found it was ...
1
vote
1answer
144 views
glReadPixels usage with glPixelStore
I looked at multiple tutorials about glReadPixels but I'm confused:
void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * data)
The ...
0
votes
0answers
192 views
glReadPixels returns fluctuating values in android
I am using:
gl.glReadPixels(x, y, 1, 1, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, colourBuffer);
where colourBuffer is a ByteBuffer with space for 4 bytes, in an android app just after drawing ...
0
votes
1answer
239 views
OpenGL - Create video output file
I want to be able to use OpenGL to create a video output file instead of the usual display on screen output. I am thinking by not using glutPostRedisplay() or (SFML version, which is something like ...
0
votes
1answer
119 views
How to make a simple screenshot method using LWJGL?
So basically I was messing about with LWJGL for a while now, and I came to a sudden stop with with annoyances surrounding glReadPixels().
And why it will only read from left-bottom -> top-right.
So I ...
0
votes
1answer
83 views
glReadPixels on separate layers
I'll get straight to the point :)
From the above 480 x 320 diagram, I am thinking I can detect collision on pixel level like a worm game.
What I want to know is how to sample pixels on separate ...
3
votes
1answer
311 views
How do I flip an image horizontally flip with glReadPixels() Bufferedimage and out put with ImageIO?
How do I flip an Screenshot image? I can't find my problem anywhere else.Example code:
/*
*@param fileLoc //Location of fileoutput destination
*@param format //"png"
*@param WIDTH ...
0
votes
1answer
248 views
glReadPixels not working on iPhone
I'm trying to take a screenshot of a GLView on the iPhone. I wrote the following code:
[self setContext];
GLint backWidth, backHeight;
glGetRenderbufferParameterivOES( GL_RENDERBUFFER_OES, ...
0
votes
0answers
246 views
OpenGL ES - glReadPixels vs TextureCached
I need to read the pixel data from the frame buffer in OpenGL ES 2.0. I know that can be done easily with glReadPixels but since iOS 5 we can use the TextureCached objects for faster reading.
I have ...
0
votes
1answer
357 views
CVOpenGLESTextureCacheCreateTextureFromImage instead of glReadPixels
For 3 full days, I have been trying to improve the performance of my AVAssetWriter which is based on glReadPixels. I have gone through Apple's RosyWriter and Camera Ripple code and Brad Larson's ...
0
votes
1answer
452 views
glReadPixels() returning non-accurate value
I'm trying to implement the flood fill algorithm. But glReadPixels() is returning float RGB values of a pixel which are slightly different from the actual value set by me, causing the algorithm to ...
1
vote
1answer
190 views
glReadPixels() alpha with overlapping textures
I'm attempting to get the alpha value of a texture with glReadPixel(). The problem I have is once the alpha value pixel is below 0.5f, it starts to combine the alpha value of the background object. I ...
2
votes
0answers
235 views
glReadPixels white spots issues
I'm trying to make a screenshot on my iPad with OpenGL ES. This does work, but there are blank spots on them. These blank spots seem to be the rendered object. I've tried using the other buffers ...
4
votes
2answers
2k views
glReadPixel stopped working with iOS6 Beta [duplicate]
Possible Duplicate:
Why is glReadPixels() failing in this code in iOS 6.0?
I currently have an App in Appstore that uses the Cocos2D framework. For collision detection I am using ...
2
votes
0answers
246 views
glReadPixels GL_RGBA returning ARGB pixels instead
In NDK, Android.
Calling the next instruction to get the viewport pixels. I am expecting the pixels to be in RGBA format, but instead I get ARGB pixels. Is there something wrong or the be set prior to ...
0
votes
1answer
435 views
glreadpixel gl_depth_component returns 0?
I am looking for a solution to intersection point of a cube and a line. So i used
GLES20.glReadPixels(touchX, touchY, 1, 1, GLES20.GL_DEPTH_COMPONENT, GLES20.GL_FLOAT, zz);
and i showed the zz , ...
0
votes
1answer
751 views
how to get colors by glreadpixels?
I am trying to get a color of touch point on the screen in Android. but it shows me only RGB = (0, 0, 0) value. I have searched other sites. it said that i should add some codes below but it didn`t ...
1
vote
1answer
1k views
Read texture bytes with glReadPixels?
I want to dump raw texture data to disk (to read back later), and I'm not sure about glReadPixel will read from the currently bound texture.
How can I read the buffer from my texture?
0
votes
2answers
201 views
glReadPixels read “out of frames” area
I draw OpenGL 3200x2000 size textured quads. OpenGLView frame size is set to 940x560. It draws quad as it should. Bun when I try to save it as image (using glReadPixels) and set glReadPixels area from ...
2
votes
1answer
2k views
OpenGL ES to video in iOS (rendering to a texture with iOS 5 texture cache)
You know the sample code of Apple with the CameraRipple effect? Well I'm trying to record the camera output in a file after openGL has done all the cool effect of water.
I've done it with ...
0
votes
2answers
70 views
How do I check whether a pixel is filled or not on a canvas in OpenGL?
I am trying to detect whether a particular pixel is filled or not in OpenGL in order to implement the flood fill algorithm. So, I searched and found the glreadpixel function but I don't get how I can ...
1
vote
1answer
164 views
Android: glReadpixels larger than viewport?
I need to capture more pixels than the width of the screen contains to save a higher res image. I figure the only two options are to pack more pixels into the screen with some Matrix command, or to ...
2
votes
2answers
515 views
glReadPixels byte to float
I am trying to retrieve a color in OpenGL ES with glReadPixels. I set my objects' colors with float[], e.g. {0.0f,0.5f,0.2f,1.0f}
How can I convert the glReadPixels value to the same float[], since ...
3
votes
2answers
357 views
When glReadPixels can be used?
I want to know the use of GLReadPixels function./
How it is reading the pixels?
Is it reading GLKView pixels or UIView pixels or anything on the mainscreen which is in bounds provided in the ...
3
votes
2answers
746 views
Asynchronous glReadPixels with PBO
I want to use two PBOs to read pixel in alternative way. I thought the PBO way will much faster, because glReadPixels returns immediately when using PBO, and a lot of time can be overlapped.
...
0
votes
0answers
414 views
screen capture to video: glReadPixels from a frame buffer object flipped
I am trying to capture the current ongoing (ios) app screens onto an array of textures, use glReadPixels to get them into a pixel buffer and then pass them onto AVAssetWriter to encode them as ...
2
votes
0answers
306 views
iOS: render to and read from depthbuffer for offscreen processing
Problem
My main goal is to get model coordinates for touches on the device, so to check what you've touched. Im working with a large model and have to draw many things, that also have to be ...
1
vote
0answers
233 views
glReadPixels not working when multi-sampling is turned on
glReadPixel works well when multi-sampling is not enabled. But when multisampling is enabled, it gives 0x502 opengl error and screen is not captured. After researching a little bit, it seems to be ...
0
votes
1answer
512 views
OpenGL ES on iOS - glReadPixels() returns the image with a black bar on the side
i like to render a simple texture with my fragment shader to 4 vertices and read the image resolution with glReadPixels. I set the (readPixel) size like the (source)picture size but i didn't get a ...
2
votes
1answer
567 views
simple 2D collision detection c++
I am kinda new to all this but I am trying to make myself a simple 2D game in c++.
I have decided to do a kind of a maze type game and what I am doing for this is drawing out the maze as a texture and ...
1
vote
0answers
170 views
glReadPixels() in lwjgl makes prog crash
In a kind of light video game developped in Java using lwjgl I use glReadPixels() in order to get the object the user is aiming with the mouse (all the objects are associated with one color). It works ...
3
votes
1answer
684 views
Qt / C++ - Converting raw binary data and display it as an image (i.e. QImage)
I have a C++ Open GL application that renders an animation display, and captures the frame-buffer contents using glReadPixels(), which is then stored as a 1D char array.
I can get the buffer ...
0
votes
0answers
147 views
Opengl texturing (with mimap or not) from a FBO
I must be missing something obvious in using FBO :
I call TMyForm::Init() once at the start of my application :
class TMyForm
{ ...
private:
Gluint mTextureId, mFboId;
int mWidth, ...
1
vote
4answers
979 views
How can I save OpenGL draw with OpenGL?
I draw a screen with OpenGL commands. And I must save this screen to .bmp or .png format. But I can't do it. I am using glReadpixels but I can't do continue. How can I save this drawing in c++ with ...
3
votes
1answer
2k views
Using OpenGL ES texture caches instead of glReadPixels to get texture data
In iOS 5, OpenGL ES Texture caches were introduced to provide a direct way from the camera video data to OpenGL without the need of copying the buffers. There was a brief introduction to texture ...
1
vote
3answers
1k views
glReadPixels only saves 1/4 screen size snapshots
I'm working on an Augmented Reality app for a client. The OpenGL and EAGL part has been done in Unity 3D, and implemented into a View in my application.
What i need now, is a button that snaps a ...
7
votes
2answers
2k views
Converting data from glReadPixels() to OpenCV::Mat
I want to get every OpenGL frame from an animation with glReadPixels() and convert the data to OpenCV::Mat. I know that glReadPixels() gets the data by rows from the lower one to upper one, from left ...
3
votes
5answers
2k views
Converting RGBA to ARGB (glReadPixels -> AVAssetWriter)
I want to record images, rendered with OpenGL, into a movie-file with the help of AVAssetWriter. The problem arises, that the only way to access pixels from an OpenGL framebuffer is by using ...
0
votes
1answer
629 views
Android NDK glReadPixels() from offscreen buffer
I'm writing a game using android ndk. I'm using picking to select objects in opengl.
For that i have an offscreen framebuffer object where i render into and i use glReadPixels() to get the color from ...
3
votes
1answer
2k views
glReadPixels with FBO is too slow
I am using openGL ES 2.0 and GLSL shader and working on FBO with Renderbuffer, aka offscreen rendering.
It works fine with 30 fps.
But when I use glReadPixels or glcopyteximage2d, it drops to 8 fps.
...
2
votes
0answers
225 views
iOS 5 sms notification causes glreadpixels to crash
Our app uses glreadpixels to capture screen on every frame. On iOS 5 devices, when you receive a text message (or any other notification, I assume), the app crashes on the glreadpixels call.
The ...
