Posts: 18
Threads: 7
Joined: Dec 2016
Reputation:
0
I was wondering if Level-of-Detail (LOD) is supported in DirectX or your library? I've had to change from 100 million points to single digit BILLION points. Which is silly for display, but if LOD could be used then I'd only need to display a reasonable smaller set.
Posts: 670
Threads: 8
Joined: Sep 2009
Reputation:
10
DirectX by itself does not support Level of detail. It is up to the user to decide what details he wants to show and when he wants to change from one level to another.
Also when you are using DXEngine, you can prepare a few versions of 3D models and then show them based on the distance from the camera.
With LOD system it is important that the change from one version of the object to another is immediate. This means that both versions of the object need to be fully initialized before they are shown so that when you decide to show high detailed object its data are already on the graphics card.
The same can be used for showing pixels. There it is also possible to create one vertex buffer with all the positions and multiple index buffers - one for each LOD. Index buffer contains indexes to the positions - so one index buffer can have indexes to all even positions, the other to every 5th positions and so on. Then you send the whole vertex buffer to the graphics card and only switch index buffers (or do not provide any to show all positions).
Such approach is also used in the OptimizedPointMesh object that will be available in the next version of DXEngine (v2.3). This object will be able to dynamically adjust the number of shown positions based on the size of Viewport, size of one pixel and camera data. The OptimizedPointMesh object divides all positions into multiple subsets and shows only those that are visible in the current camera. What is more, all positions are analyzed and those that are close together in 3D space can be combined into one position (when the camera is far away and positions are rendered to the same 2D coordinates on the screen).
How to efficiently prepare 3D models or 3D positions with DXEngine is probably not very easy task. Therefore in the following days, I will prepare a new sample on how to do that. I will also publish the source code here.
Andrej Benedik
Posts: 18
Threads: 7
Joined: Dec 2016
Reputation:
0
You are correct in saying that LOD is difficult in 3D. For example if I have a 15 mile road that I am looking at on axis, I may be very close to points on one end but very far from points on the other end so LOD is difficult.
BUT these are very interesting problems to try and solve tho they fall into the category of "obvious" for my users and difficult for me.
But at 2-4 Billion points it is just so much more data than the user can possibly deal with at one time. However they are able to deal with collections of data that resolve into more detail as they zoom in. So the determination of LOD does rightly belong to me as the importance of the data probably ends up being a comparative value issue.
I'm going to give the OptimizedPointMesh a shot, tho I may have to wait for my next release. I'm in a big push to finish by end of year.
Thx for the help.