Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm implementing a special navigation technique in OpenSceneGraph. For that purpose I need to know the position and the distance to the camera of the fragment which is closest to the camera.

My plan is to render the contents of the depth buffer into an osg::Image and afterwards iterate over the pixels of the image to find the pixel with the smallest z-value.

I understand that the depth buffer stores the z-index of a fragment (relative to near and far plane) as a value between 0 and 1. I also understand that this range is not evenly distributed because there is a much higher density near the near plane. So I need to convert that back somehow—but this is not my current problem.

My current problem is that I get really strange values when reading the image data. And by strange I mean not in range of [0..1] but values like 2.29589e-39, 232.193 and -272.565.

My setup code looks like this:

//create image
ref_ptr<Image> depthImage = new Image();
depthImage->allocateImage(64, 64, 1, GL_DEPTH_COMPONENT, GL_FLOAT );

//initialize camera attributes ('this' is a subclass of osg::Camera)
this->setViewport(0, 0, 64, 64);
this->setProjectionMatrixAsPerspective(90, 1.0f, 10, 1000);

this->setClearMask( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
this->setClearDepth(1.0); // seems to have no effect...

//camera config
this->setRenderOrder(Camera::PRE_RENDER); // since this is a utility camera
this->setRenderTargetImplementation(Camera::FRAME_BUFFER_OBJECT);
this->attach(Camera::DEPTH_BUFFER, depthImage.get());
this->setReferenceFrame(Camera::ABSOLUTE_RF);
this->addChild(scene);

//draw callback for calculating the minimal depth
this->setPreDrawCallback(new MinimalDepthCalculatorCallback());

And the callback code looks like this:

//...
Vec3f minDistPoint( 0, 0, 1.0f );

// iterate through the whole image
for( int c = 0; c < 64; ++c ) {
    for( int r = 0; r < 64; ++r ) {
        // let's ignore the conversion for the moment and take the value directly       
        float zIndex = ((float*) depthImage->data(c, r))[0];
        if(zIndex < minDistPoint.z())
            minDistPoint.set(c, r, zIndex);
        }
    }
}
// do something with minDistPoint...

As I said, I expected the value to be between 0 and 1. But I always get those strange readings. Any suggestions what I'm doing wrong?

Note: I am aware that I could calculate the distance in a fragment shader and render the result into a texture to evaluate that texture afterwards (that's my current implementation). But I plan to provide the camera controller I'm writing to other users. That means I don't want to restrict them in their shader code—they should not have to care about somehow passing the depth values of their fragments.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.