Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
9k views

what are sparse voxel octrees?

I have reading a lot about the potential use of sparse voxel octrees in future graphics engines. However I have been unable to find technical information on them. I understand what a voxel is, ...
5
votes
5answers
556 views

Voxels… Honestly, I need to know where to begin

Okay, i understand that voxels are just basically a volumetric version of a pixel. After that, I have no idea what to even look for. Googling doesn't show any tutorials, I can't find a book on it ...
5
votes
2answers
914 views

Voxel 3d “grid”

What in your opinions, would be the best language to create a large (massive..) 3d voxel based grid in? i.e. like Minecraft (http://www.minecraft.net/) I note that Minecraft was created in Java, ...
3
votes
2answers
176 views

Get list of visible voxels in a grid

I'm working on a Minecraft-style game, and I need a way to reduce the amount of the world rendered. Currently, I'm using a naive, render-everything approach, which is having obvious scaling problems. ...
3
votes
8answers
592 views

How to quickly count the number of neighboring voxels?

I have got a 3D grid (voxels), where some of the voxels are filled, and some are not. The 3D grid is sparsely filled, so I have got a set filledVoxels with coordinates (x, y, z) of the filled voxels. ...
2
votes
2answers
493 views

Voxel Engine and Optimization

Recently I've started developing voxel engine. What I need is only colorful voxels without texture, but at very large amount (much smaller than minecraft) - and the question is how to draw the scene ...
2
votes
1answer
769 views

vtk java voxel rendering

Hi Guys, does anyone knows, why this code in Java compiles, but an Error appears: "An unrecoverable stack overflow has occurred. # # A fatal error has been detected by the Java Runtime Environment: ...
1
vote
1answer
107 views

Areas of research related to algorithms operating on volume data [closed]

I am writing a masters thesis and would like some input from people who are knowledgeable about one or more of these fields: AI, computer vision, volume graphics, segmentation (3D), feature ...
0
votes
0answers
62 views

Converting meshes to metaballs

I'm doing a project where I need to convert an existing polygonal mesh into a static shape made from metaballs (blobs). I have voxelized the mesh with binvox to "a .raw file" (according to the ...
0
votes
2answers
215 views

Dynamic Terrain Deformation

I am interested in designing a very simple game (just for learning purposes I have no grand plans). I want to have a deformable terrain system (think Minecraft) but something a little more complex. I ...