Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
520 views

Occlusion algorithms collection

The occlusion algorithm is necessary in CAD and game industry. And they are different in the two industries I think. My questions are: What kind of occlusion algorithms are applied respectively in ...
3
votes
1answer
330 views

OPENGL ARB_occlusion_query Occlusion Culling

for (int i = 0; i < Number_Of_queries; i++) { glBeginQueryARB(GL_SAMPLES_PASSED_ARB, queries[i]); Box[i] glEndQueryARB(GL_SAMPLES_PASSED_ARB); } I'm curious about the method ...
3
votes
5answers
880 views

3d Occlusion Culling

I'm writing a Minecraft like static 3d block world in C++ / openGL. I'm working at improving framerates, and so far I've implemented frustum culling using an octree. This helps, but I'm still seeing ...
3
votes
1answer
266 views

Identify visible vertices in OpenGL

What is the most efficient way to identify the vertices that are visible from a particular viewpoint? I have a scene composed of several 3D models. I want to attach an identifier to each vertex ...
2
votes
1answer
203 views

Best solution for 2D occlusion culling

In my 2D game, I have static and dynamic objects. There can be multiple cameras. My problem: Determine objects that intersect with the current camera's view rectangle. Currently, I simply iterate ...
2
votes
1answer
395 views

Occlusion with octrees

I just started learning opengl and writing a first person shooter but I'm getting horrible framerates when I draw 5000 cubes. So now I'm attempting to perform occlusion and culling using an octree. ...
2
votes
1answer
877 views

Count image similarity on GPU [OpenGL/OcclusionQuery]

OpenGL. Let's say I've drawn one image and then the second one using XOR. Now I've got black buffer with non-black pixels somewhere, I've read that I can use shaders to count black [ rgb(0,0,0) ] ...
1
vote
0answers
93 views

iPhone iOS5 querying OpenGL ES 2.0 pipeline objects if they are hidden in the view or not…“Occlusion”

EXT_occlusion_query_boolean is new with OS5.0, it looks to me like not a single person on the entire internet has posted about these new extensions nor used this code.... so here they are set up ...
1
vote
1answer
127 views

Registration of Real Objects in video frame

I would like to ask if it is possible to deal inside openCV with the registration of an virtual object into a real image(real world object). After detecting the region of interest in a real captured ...
1
vote
1answer
191 views

Parallax shader

I recently tried adding parallax occlusion mapping to my landscape renderer and it looks and works fine, but I've faced some problems. Here are 2 images (one with only normal texture mapping, another ...
1
vote
3answers
2k views

OpenGL: How to determine if a 3D (rendered) point is occluded by other 3D (rendered) primitives in front of it?

In my OpenGL program, I am doing the following in sequence: // Drawing filled polyhedrons // Drawing points using GL_POINTS // Displaying information for each above point beside it For displaying ...
0
votes
0answers
62 views

Ambient Occlusion lighting ray collision

I'm attempting to implement ambient lighting as shown on this page (scroll down a bit), but I'm stuck where I have to check where each ray collides into another cell. My volume is a 3D grid of values, ...
0
votes
1answer
72 views

How to handle mouse events on occluded (overlapped) display objects in flash/flex?

my questions is little similar to some of the questions asked previously about overlapped sprites/movieclips like this. But my requirement is slightly different than them. I want to handle the ...
0
votes
1answer
136 views

Detecting of Real world Objects in video frame

We are working on a project that involves interative Occlusion of real world and virtual objects.We need to detect real objects from the webcam caputre in realtime. We are not able to find any ...