The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
35 views

Converting GPS coordinates into 3D model

As the question says, I am looking to use GPS coordinates (say from Google maps) to build a 3D model (a road). So it should work as follows: You go to Google maps and select a route (this can be ...
1
vote
0answers
47 views

Calculating height on heightmap

Like in topic. I have heightmap generated and I want to calculate exact height on single heightmap square. Each square have 4 heights, one for each corner. For example: 0---4 4---4 ----- ----- ...
1
vote
2answers
46 views

How can you stitch multiple heightmaps together to remove seems?

I am trying to write an algorithm (in c#) that will stitch two or more unrelated heightmaps together so there is no visible seem between the maps. Basically I want to mimic the functionality found on ...
1
vote
0answers
21 views

Reading in a BMP Heightmap

I am trying to load in a height map using C++ with DirectX. As a test I created a BMP file that is all black, so the terrain should be flat. Part of the edge is not flat though. Can anyone tell me ...
0
votes
0answers
89 views

Heightmap Generation using Perlin Noise returns black bitmap

i'm making a Heightmap Generator using Perlin Noise, as the title says. i've used a pseudocode from this site -> http://freespace.virgin.net/hugo.elias/models/m_perlin.htm and turned in to C# code. ...
0
votes
1answer
85 views

Converting a heightmap to mesh for rendering in XNA for WP7

As I'm sure most of you know WP7 doesn't support custom shader files which to me unless I'm missing something means that I can't draw anything from just vertex and indices data like I can on Windows, ...
1
vote
1answer
101 views

Issue with Terrain Collision using Three.js

I have created a terrain via a heightmap in Three.js and am using mrdoob's misc_controls_pointerlock for collision and movement. However, when I do objects.push(terrainobj); the performance goes down ...
-1
votes
1answer
72 views

What are some good algorithms to generate a dynamic heightmap? [closed]

I want to research some algorithms for dynamic heightmap generation but I'm not familiar with any. Getting even more dynamic. Whats some theory on how multi-dimensional heightmaps work? i.e. Caves and ...
1
vote
1answer
106 views

Generating a heightMap without an Image

I want to make a world generator so that every time I load it, it generates a new heightmap. To do this I'm using a 2D integer array. The dimensions are the x, z, and the height (y). Is there some ...
1
vote
1answer
189 views

Normal map from height map artifact

I'm baking normal map on the fragment shader from a height map. The height map looks great and looks smooth. However, when I generate the normal map I get very weird result. Here are two rendered ...
1
vote
0answers
108 views

Java heightmap using lwjgl

I have coded a heightmap but it seems to lag the client. I just don't know how to increase the fps. I get about 3-6fps with the heightmap. Im using a quite large bmp for the heightmap, I think its ...
1
vote
1answer
165 views

artefacts during heightmap generation using plasma style fractal

I've spent a few hours today researching how random terrain generation tends to be done and after reading about the plasma fractal (midpoint displacement and diamond square algo's) I decided to try ...
2
votes
1answer
482 views

C++ OpenGL Cube Map Perlin Noise to Sphere

I'm currently working on some Planet Generation mainly for fun and hoping to end up with some kick ass planets. I'm using a Cube which has been mapped into a sphere by normalization. The terrain ...
1
vote
1answer
141 views

finding height on a heightmap stretched over a sphere C# *solved*

I'm looking for a bit of math help. I have a game were a 2D heightmap is generated and then stretched over a sphere using a length/direction formula. Now I need to know how to calculate the height ...
0
votes
1answer
50 views

how compressed can I get a heightmap?

I've been playing around with simple terrain generation ( diamond square alogorithm ) and I got to thinking about how large I can practically do it. If I wanted to generate a continent, then a 1000 ...
2
votes
1answer
562 views

Tweaking Heightmap Generation For Hexagon Grids

Currently I'm working on a little project just for a bit of fun. It is a C++, WinAPI application using OpenGL. I hope it will turn into a RTS Game played on a hexagon grid and when I get the basic ...
0
votes
0answers
263 views

ios water effect on UIImageView

I'm trying to make a water effect in iOS. I have a UIImageView (but this can be changed if necessary ) and I want water effect over it. I found this example: ...
0
votes
0answers
228 views

OpenGL Rendering HeightMap with moving camera [closed]

I am rendering a terrain in opengl, using glut, but right now I am stuck. I have created my own library for use with opengl, and the code is as follows: Vector3 up(0.0f,-1.0f,0.0f); Vector3 ...
4
votes
2answers
915 views

Displacement Map UV Mapping?

Summary I'm trying to apply a displacement map (Height map) to a rather simple object (Hexagonal plane) and I'm having some unexpected results. I am using grayscale and as such, I was under the ...
1
vote
1answer
194 views

Holes on Heightmap based terrain using Directx11

I'm currently working on a cylinder shaped terrain produced by a height map. What happens in the program is simple, there is a texture for the colors of the terrain that has the alpha value of regions ...
2
votes
1answer
183 views

Heightmap in Shader not working

I'm trying to implement GPU-based geometry clipmapping and have problems to apply a simple heightmap to my terrain. For the heightmap I use a simple texture with the surface format "single". I've ...
0
votes
1answer
506 views

OpenGL Heightmap Loader

I checked for a LibGDX heightmap loader and found one, but I am not quite sure how the buildIndices() code works. I am also not sure why it only generates a heightmap chunk that is 128*x*128, anything ...
1
vote
3answers
731 views

With C++ and QT, how do I display a 16-bit raw file as an image?

I am looking to display heightmaps from the video game Battlefield 2 as images in my application. I am new to C++ and QT and it might be straight forward but what I am having trouble with is ...
0
votes
0answers
325 views

Perlin Noise issue

I've created a Perlin noise function. My issue is when I generate a terrain map from the noise it ends up blocky, nothing like the cloudlike images I've seen. I'm curious on what I'm doing wrong (if ...
0
votes
2answers
1k views

Generating Heightmap from Image with GLSL Shader

Lately I've been playing around with webGl and I stumbled across a cool little demo here (source here) that I'd like to alter slightly to get some cool results. I'm interested in changing the way ...
1
vote
1answer
522 views

How to read height map values to generate a terrain?

I am trying to make a terrain using a height map image in OpenGL. As a experiment i use 4x4 pixel image. this is a zoomed screen shot. so you can see the pixels. This is a part of my code. ILubyte ...
-2
votes
1answer
1k views

OpenGL Texture on height map

i'm working on the rendering of an height map terrain and everything works fine except the texture. I have to stretch a jpg file over the whole terrain (using GLM) but it doesn't work! This is part of ...
19
votes
1answer
631 views

Mapping a height map to a grid-based contour format

I have a 2D height map in the following format 06 36 39 42 43 55 ... 37 40 43 43 45 46 ... 40 43 44 45 46 48 ... 44 44 46 47 48 50 ... 41 44 45 47 48 48 ... ... And I need to remap it into a grin ...
0
votes
1answer
350 views

The size of the terrain rendered from heightmap

I'm quite new to XNA so excuse me if I ask a 'silly' question but I couldn't find an answer. I have a problem with the terrain rendered from a heightmap: the terrain I get is too small, I need ...
0
votes
1answer
203 views

How can I write a terrain into a .raw file?

I want to generate a terrain through Perlin noise and store it into a .raw file. From Nehe's HeightMap tutorial I know the .raw file is read like this: #define MAP_SIZE 1024 void ...
1
vote
2answers
256 views

Mandelbrot set reaches to its limit way too soon

im calculating mandelbrot set, with the ability of zooming and printing it to the screen using OpenGL. as you know mandelbrot set is defined by a rectangle(top right point and bottom left point) ...
3
votes
2answers
159 views

How to optimize my custom mapformat (Java)

I'm creating a 3D game where I have a large open world (200×200 kilometers), that uses a heightmap. I divide the heightmap in 200×200 = 40,000 regions of 1000×1000 meter, and those are again divided ...
1
vote
1answer
365 views

OpenGL height-map painting using CUDA VBO

I've asked several questions regarding VBO previously here and from the comments i had received i decided that a new approach must be taken. To put it simply - I'm trying to draw the Mandelbrot set ...
1
vote
2answers
1k views

OpenGL Terrain Colission Detection

Okay, I have some procedurally generated terrain (based loosely on http://www.swiftless.com/terraintuts.html) Ive got a teapot "plane" which you can fly around in (third person camera) Basically, ...
10
votes
2answers
2k views

WebGL - Textured terrain with heightmap

I'm trying to create a 3D terrain using WebGL. I have a jpg with the texture for the terrain, and another jpg with the height values (-1 to 1). I've looked at various wrapper libraries (like SpiderGL ...
0
votes
1answer
401 views

Help me with WebGL and a heightmap with many texture splatted/blended

I would like to begin a new hobby project which is a real-time strategy game on WebGL. My past RTS game was simple and it was made with XNA/C#. Now I want it on the web and I want a proper terrain. I ...
4
votes
3answers
657 views

Simulating fluid flow over a heightmap

I am looking for a way to approximate a volume of fluid moving over a heightmap. The easiest solution I can think of is to approximate it as a large number of non-drawn spheres, of small diameter ...
0
votes
1answer
180 views

Graphical Glitch Xna GraphicsTutorial - Debug

My terrain gets weird colors like this: http://tinypic.com/view.php?pic=307w421&s=7 Does anyone have any idea what is going wrong here? In what area of my code (conceptually) should I look to ...
1
vote
1answer
295 views

Straight line to curved

I am trying to come up with a technique to generate a height map for a meteor crater. I'm trying to keep is small and simple at the moment, and have a simple algorithm where the centre of the crater ...
2
votes
1answer
709 views

How to correctly get the terrain height at point (x,z) in a scaled terrain

To properly map every pixel of a heightmap image to a terrain, we will end up with a terrain both in width and length 1 unit less that the actual width and length of the heightmap. For instance, if we ...