2D icons in a 3D projection?

Started by
3 comments, last by Grumple 11 years, 11 months ago
Hi,

I'm working on a project where I need to draw 2D icons in a 3D perspective projection. The idea is to position the icons correctly in the 3D scene, but to draw them with consistent pixel size regardless of distance from the camera. If you picture 'points of interest' in google maps, you will see what I'm after. Regardless of the map zoom level or camera 'distance from map', the points of interest icons maintain constant pixel size.

The icons themselves will just be standard textured billboards, always oriented to face the camera directly.

As far as I can tell, there are two basic approaches....one being to draw them as part of the perspective scene render, but calculate their height/width to cancel out distance from camera (ie make them bigger the farther from the camera they are using a reversal of the perspective projection), or to do a second render pass in an actual Ortho projection, where the widths and heights can be consistent. However, if my head is wrapped around the problem correctly, I wouldn't really save effort with an ortho projection as I would then have to do math to position things in a perspective projection manner within the viewport.

Would I be correct to say the logical method is to render the icons in perspective mode with the rest of the scene, but adjust the width/height of the billboards in a 'reverse perspective' calculation to compensate for distance from camera? Is there any other simple way to do this?

Thanks!

Edit: In hindsight this probably should have gone in the "Graphics Programming and Theory" forum instead of OpenGL..
Advertisement
So, what you need to do is:
1. To project the vertex of your icon's position in 3d-space (you can use gluProject, for example)
2. Now you have got a position in window space. Go to orthogonal projection and draw it:

glOrtho(0,vp[2],0,vp[3],0,1); // NOTE: vp - is "int viewport[4]" which you used in gluProject
//double wpos[3] - output from gluProject (window position)
//double iconSize; - in pixels
glBegin(GL_QUADS); // simple actions
glVertex3d(wpos[0] - 1 * iconSize, wpos[1] - 1 * iconSize, wpos[2]);
glVertex3d(wpos[0] + 1 * iconSize, wpos[1] - 1 * iconSize, wpos[2]);
glVertex3d(wpos[0] + 1 * iconSize, wpos[1] + 1 * iconSize, wpos[2]);
glVertex3d(wpos[0] - 1 * iconSize, wpos[1] + 1 * iconSize, wpos[2]);
glEnd();
// this would draw quadratic at 3D position with fixed size in pixels

That's little example on how to do that.

Best wishes, FXACE.
Thanks a lot, FXACE....gluProject definitely looks useful for what I want.

Just as a follow up question, I assume window Z coord returned by gluProject would be depth into the screen from camera perspective? I still want my 2D icons to be depth tested and culled by any geometry that was rendered in perspective projection and is 'closer' to the camera. Would the depth testing still work for the billboards while rendering in Ortho using the winZ value from gluProject?

Edit:
Upon doing some gluProject reading, it seems the returned z coordinate is in 'normalized' depth buffer coordinates. Here is an example I've found describing my main problem quite accurately, with what looks like a good solution.
http://stackoverflow.com/questions/8990735/how-to-use-opengl-orthographic-projection-with-the-depth-buffer/8991624#8991624

That thread has a formula for converting between the intial gluProject winZ and a z value matching that depth in the Ortho mode. However, if I follow the formula correctly, setting my intial ortho znear to 0, and zfar to 1, I can directly use the z value returned by gluProject as my billboard Z, just negated to fall down the -z axis (opengl).

Does that make sense? The only part that is still confusing me is whether or not the billboard corners can correctly have the same z value as the center point that was returned through gluProject? I think I might be imagining it wrong, but in perspective mode if I ran a ray from the camera to the center of the billboard, it would get a different distance than a ray from camera to a corner, so I would think the depth values would be different as well.

Does the perspective depth buffer somehow make the depths 'normalized' from a plane the camera is on perpendicular to its line of sight, or do the depths represent distance from the actual spot the camera sits?
This formula would be useful for you in near future but for this you don't really need that.
Let me show you complete example:

// Set up projection
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(...);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
// place your view to look at
DrawScene();
double proj[16];
double mv[16];
int vp[4];
glGetDoublev(GL_MODELVIEW_MATRIX, mv);
glGetDoublev(GL_PROJECTION_MATRIX, proj);
glGetIntegerv(GL_VIEWPORT, vp);
double pos[3] = {0, 0, 0}; // position of your icon in 3D space
double wpos[3];

gluProject(pos[0], pos[1], pos[2], mv, proj, vp, &wpos[0], &wpos[1], &wpos[2]);
wpos[2] *= -1; // negate z value because OpenGL's forward axis is '-Z'
double iconSize = 50;


// go to orthogonal projection
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0, vp[2], 0, vp[3], 0,1);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();

glColor3f(<your color>);
glBegin(GL_QUADS); // simple actions
glVertex3d(wpos[0] - 1 * iconSize, wpos[1] - 1 * iconSize, wpos[2]);
glVertex3d(wpos[0] + 1 * iconSize, wpos[1] - 1 * iconSize, wpos[2]);
glVertex3d(wpos[0] + 1 * iconSize, wpos[1] + 1 * iconSize, wpos[2]);
glVertex3d(wpos[0] - 1 * iconSize, wpos[1] + 1 * iconSize, wpos[2]);
glEnd();

And finally you will get nice quad which would be drawn as you wanted (depth tested and culled).


Does that make sense? The only part that is still confusing me is whether or not the billboard corners can correctly have the same z value as the center point that was returned through gluProject? I think I might be imagining it wrong, but in perspective mode if I ran a ray from the camera to the center of the billboard, it would get a different distance than a ray from camera to a corner, so I would think the depth values would be different as well.

Does the perspective depth buffer somehow make the depths 'normalized' from a plane the camera is on perpendicular to its line of sight, or do the depths represent distance from the actual spot the camera sits?

Nope, any vertex is clipped by planes (left, right, bottom, top, near, far). In orthogonal projection distance of center, corner of billboard to near (&far) plane are equivalent. OpenGL doesn't have a camera, it has a view port (where you move/transform all vertices into, by using of matrices, etc)
But with shaders you can construct a depth buffer as you wish...

Best wishes, FXACE.
Thanks for the detailed explanation! I was definitely mixing up the difference between the concept of a camera and the OpenGL viewport. Cheers!

This topic is closed to new replies.

Advertisement