Tagged Questions
The glreadpixels tag has no wiki summary.
6
votes
1answer
360 views
How to draw screenshot captured from glReadPixels to wxWidgets dialog/panel
I have an OpenGL window, and a wxWidget dialog. I want to mirror the OpenGL to the dialog. So what I intend to do is:
Capture the screenshot of the opengl
Display it onto the wxwidgets dialog.
...
5
votes
1answer
882 views
glReadPixels clears buffer in openGL ES 2?
I have an OpenGL ES 2 drawing app (iOS 4), so I'm retaining backing in my CAEAGLLayer rather than clearing on every frame:
eaglLayer.opaque = TRUE;
eaglLayer.drawableProperties = [NSDictionary ...
4
votes
1answer
460 views
OpenGLScreenSnapshot doesn't work in Mac OS X 10.7 - Lion
I've been writing a program based on the ScreenSnapshot example from apple: http://developer.apple.com/library/mac/#samplecode/OpenGLScreenSnapshot/Introduction/Intro.html
and after upgrading from ...
3
votes
1answer
495 views
how to record screen video as like Talking Tomcat application does in iphone?
hey i m trying the record the gameplay of my game so that i can upload its video to youtube from device itself...m trying to do same thing as Talking tomcat app for iphone..recording the video then ...
3
votes
1answer
142 views
optimal pixel-read back strategy
I need to render certain scenes and read the whole image back in main memory. I've search for this and it seems that most video cards will accelerate the rendering but the read-back will be very slow. ...
3
votes
3answers
275 views
screenShot code Not working on ipad, works on iphone
i am having this strange problem...
i had to capture the screen data and convert it into an image using the following code..this code is working fine over iphone/ipad simulator and on iphone device ...
2
votes
5answers
110 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 ...
2
votes
1answer
185 views
glReadPixel returns zeros and error 1282 (Android)
Here is my picking code
public static void pick(GL11 gl){
int[] viewport = new int[4];
ByteBuffer pixel = ByteBuffer.allocateDirect(3).order(ByteOrder.nativeOrder());
...
2
votes
1answer
180 views
Screencapturing using glReadPixels results in shifted pixels in some window resolutions
I am using GLUT for my windowing system to output some images onto the screen.
I also want to output the images to files. This has been a challenge. In some window resolution (such as 256x256, ...
2
votes
2answers
884 views
Reading the pixels values from the Frame Buffer Object (FBO) using Pixel Buffer Object (PBO)
Can I use Pixel Buffer Object (PBO) to directly read the pixels values (i.e. using glReadPixels) from the FBO (i.e. while FBO is still attached)?
If yes,
What are the advantages and disadvantages ...
2
votes
0answers
328 views
Iphone saving a slow video with open gl filter
I am using avcapturesession with a preset AVCaptureSessionPresetMedium to capture video, i am applying effect on this video with opengl using shaders.
I use assetWriter to write the video to an mp4 ...
2
votes
2answers
451 views
glReadPixels() slow on reading GL_DEPTH_COMPONENT
My application is dependent on reading depth information back from the framebuffer. I've implemented this with glReadPixels(0, 0, width, height, GL_DEPTH_COMPONENT, GL_FLOAT, &depth_data)
However ...
2
votes
2answers
2k views
glReadPixels() really slow, better solution to get OpenGL coordinates from mouse position?
This is my code that i use to get my mouse position in the 3d scene:
void GetOGLPos(int x, int y, GLdouble &pX, GLdouble &pY, GLdouble &pZ){
GLint viewport[4];
GLdouble modelview[16];
...
1
vote
1answer
142 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.
...
1
vote
0answers
133 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 ...
1
vote
0answers
126 views
android support better method than glreadpixels?
I'm making android game.(using andengine)
I need to record game play screen .
This is not for making promotion video, It is for game players to review their game play.
My app should record video by ...
1
vote
1answer
216 views
glReadPixels too slow to use
I am using glReadPixels to take a snapshot at regular intervals in drawFrame method of GLSurfaceView.Renderer. I need to take this snapshot at regular intervals to keep saving my data as per my app ...
1
vote
4answers
531 views
Pixel formats, CVPixelBufferRefs and glReadPixels
I'm using glReadPixels to read data into a CVPixelBufferRef. I use the CVPixelBufferRef as the input into an AVAssetWriter. Unfortunately the pixel formats seem to be mismatched.
I think ...
1
vote
1answer
1k views
Android OpenGL ES 2.0 — glReadPixels() and glTexImage2D() drawing a black texture?
I'm working on some Android code for caching and redrawing a framebuffer object's color buffer between the loss and recreation of EGL contexts. Development is primarily happening on a Xoom tablet ...
1
vote
2answers
144 views
opengl stencil buffer not initialized with zero?
I work under MS WindowsXP,my video card is itel GMA4500,
my code:
glClearStencil(0);
glClear(GL_STENCIL_BUFFER_BIT);
unsigned char* data = new unsigned char[width*height];
...
1
vote
1answer
704 views
Problem in Reading data using glReadPixel()
Presently i am trying to read the pixel data from the frame Buffer in order to capture the screen in IOS. GlreadPixels command work fine when using the following code to setup frame buffer :-
...
1
vote
2answers
322 views
glReadPixels - image looks dithered
I wish to capture an image I rendered rendered in openGL. I use glReadPixels and then save the image with CImg. Unfortunately, the result is wrong. See below. The image on the left is correct. I ...
1
vote
2answers
305 views
how to Rotate image by 90' degree using pixel data of the image?
Currently i m capturing the screen using the glreadpixels(). the image captured is generally mirrored image hence i flipped back the image to normal.
Now i want to rotate the captured data (image) by ...
1
vote
2answers
416 views
Problem reading data by glreadpixel() while using depth buffer and anti-aliasing technique
I want to capture the screen of my game using glreadpixel().
it works fine over simulator also on 2g iphone with ios version 3.1.1 .
but on ipad with ios version 4.2.1 it doesnt . i came to know the ...
1
vote
2answers
225 views
glReadPixels read failed on second-time
Following code works fine
const char *title = "glReadOutput";
Mat out1, out2;
out1.create(screenHeight,screenWidth, CV_8UC3);
out2.create(screenHeight,screenWidth, CV_8UC3);
RenderObject();
...
1
vote
2answers
311 views
Reading depth value of transparent plane with glReadPixels and gluUnProject
I am trying to create a billiards simulation and have been using glReadPixels along with gluUnProject to project my mouse pointer into the scene.
This works fine if the mouse is pointing at an object ...
1
vote
2answers
460 views
OpenGL ES 2.0 :glReadPixels() with float or half_float textures
I am writing an OpenGL ES 2.0 app for the iPhone (iOS 4.1). At the end of the computations, which are done in the shaders, i need to write back some data to the CPU. As far as I know this can be done ...
1
vote
0answers
348 views
Problems with glReadPixels in android
I am trying to implement an opengl picking system I read about and have hit an issue with glReadPixels. Basically, every node in the scene gets a unique color and when a new touch happens, it renders ...
1
vote
1answer
236 views
Implementing render-to-vertex-array, glReadPixels fails (invalid operation)
I'm trying to copy vertex data from a texture to a vertex buffer, and then draw the vertex buffer. As far as I know the best way to do this is to bind the texture to a fbo, and use glReadPixels to ...
1
vote
1answer
665 views
iPhone OpenGL ES: glReadPixels not working
I trying to implement a simple picking function using glReadPixels however when I click on an object that is 1 colour, I get different values back depending on where I clicked on that object? There ...
0
votes
1answer
40 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 ...
0
votes
0answers
84 views
Color Picking in Android Opengl ES
I'm trying to select an object using the color picking that provide in this page
I have a lot of cube and each cube has an 'id'. I transform each 'id' in a different color.
Then, when a color is ...
0
votes
0answers
66 views
opengl on mac osx
I am developing an application to draw graphics or textures,in NSOpenGLView.Now I have finished the work for drawing,it works fine.but I have a problem with exporting the pix data to NSImage.I did set ...
0
votes
0answers
152 views
glReadPixels in NSOpenGLView
I am developing an application to draw graphics or textures in NSOpenGLView.Now I have finished the work for drawing,it works fine.but I have a problem with exporting the pix data to NSImage.
source ...
0
votes
1answer
296 views
OpenGL: glReadPixels “fails” although glGetError returns 0
Problem summary:
I use OpenGL glReadPixels to get a screenshot but the buffer is unchanged.
If I use glGetError to get the error from the last function, it returns 0, as if everything is fine.
I've ...
0
votes
1answer
152 views
OpenGL ES - Reducing texture quality and texture size
Is it possible to "degrade" the quality of textures in OpenGL ES? By degrade I mean make the images more pixelated/blocky/blurry etc.
My goal is to reduce the size of textures to help glReadPixels ...
0
votes
3answers
245 views
How to call glReadPixels on different thread?
When I call glReadPixels on another thread, it doesn't return me any data. I read somewhere suggesting that I need to create a new context in the calling thread and copy the memory over. How exactly ...
0
votes
1answer
160 views
Creating a HBITMAP from glReadPixels
I need to create a HBITMAP from data returned by a glReadPixels() call:
HDC hCompDC = CreateCompatibleDC(NULL);
HDC hDC = GetDC();
m_hClipboardBitmap = CreateCompatibleBitmap(hDC, size.cx, ...
0
votes
0answers
335 views
OPENGL ES on iOS, glreadpixel doesn't work with BGRA format
On iOS device (I tried ipad1 and ipad2) glreadpixel works for the RGBA pixel format, but for BGRA pixel format it does not work. In the code below I use GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES to get ...
0
votes
2answers
144 views
Read Framebuffer-texture like an 1D array
I am doing some gpgpu calculations with GL and want to read my results from the framebuffer.
My framebuffer-texture is logically an 1D array, but I made it 2D to have a bigger area. Now I want to read ...
0
votes
1answer
414 views
how to use glreadpixels with android — usually get zeros
I'm trying to detect the opengl object under the cursor... I have read
it referred to as picking. Here is my code:
public int makeBuffer(GL10 gl, int x, int y) {
ByteBuffer PixelBuffer = ...
0
votes
2answers
310 views
glReadPixels returns wrong values
I try to get rendered pixels color.
gl.glColor3f(1f, 0, 0);
//draw
gl.glReadPixels(lastX - pw / 2, MyCanvas.this.getHeight()
- (lastY - ph / 2), pw, ph, GL.GL_RED, GL.GL_FLOAT,
...
0
votes
1answer
393 views
SDL OpenGL screenshot is black
I create a screenshot of my opengl window with help of SDL library, but it was all black and i dont understand why. How to fix it?
Code:
SDL_Surface * image = SDL_CreateRGBSurface(SDL_SWSURFACE, ...
0
votes
4answers
734 views
How to take screenshot in opengl
How to take screenshot of opengl window in c++ and save it to file.
I find a glReadPixels() but dont know what to do next. Where i can set path to a file, for example?
If not difficult, write code, ...
0
votes
0answers
385 views
Desperately need help with glReadPixels in Android
Can someone please give an example of how to read a pixel color in Android opengl es? I can not find any working examples, and I have previous unanswered posts. I would appreciate any help.
0
votes
1answer
599 views
glReadPixels() Problem in Android to reconstruct the frame
I am working on a project on Augmented Reality with Android. The code captures the camera video, finds the marker and displays a cube on top of it. After this a motion vector (in the form of pixels ...
0
votes
2answers
311 views
OpenGL - Pixel color at specific depth
I have rendered a 3D scene in OpenGL viewed from the gluOrtho perspective. In my application I am looking at the front face of a cube of volume 100x70x60mm (which I have as 1000x700x600 pixels). ...
0
votes
1answer
545 views
Iphone glReadPixels problem
I am drawing a PIE char in Iphone, with OPENGL ES. Now I need to check the color of the pie where user clicked. When I click any pie, it sometimes returns correct values, and sometimes not correct, ...
0
votes
3answers
753 views
glReadPixels crashes on specific render buffer widths
I need to read content of CAEAGLLayer, which has various widths and heights (based on background image size). on iPad emulator everything is okay, but on device I have crashes or weird horizontal ...
0
votes
1answer
348 views
glfwOpenWindow and glReadPixels modes?
Suppose I open a glfw window with:
glfwOpenWindow(width, height, 8,8,8,8,8,8, GLFW_WINDOW);
Then, I try to read it back with:
glReadPixels(0, 0, width, height, ..1.., ..2..);
I'm not sure what I ...