How can i create normal textures with code?

Started by
3 comments, last by Hawkblood 10 years, 2 months ago

Hi,

I would like to know if it is possible to create a normal texture of a given texture programatically, and what i have to know to make something like this.

I want to do this to create a simple tool that creates normal textures from given textures.

Advertisement

Programatically?

It is possible in the sense that can be done, but I don't think it's feasible because the whole point of having a normal texture is because the code can't figure how to do itself...

Check this image. There's a perfect example in the middle of the texture of something that is bumped out but it doesn't appear so from the texture, so only something human looking at it could figure it out.

So if you do it programatically, I think at best (easily) you could do the texture the wrong way, which would be simply by making another texture in black/white shades.

But still, if you can figure some algorithm to make the code "realize" where it is supposed to have height differences... or if you just want to try it out, you can do a simple one using C++ and Bitmaps.

All images in their raw form are bytes that are usually in the format RGB or RGBA.

You can check for various libs (free) for loading images from various formats (such as stb_image, really easy to set up and use) into an array of unsigned char*, and then... well, you can parse each "pixel" by getting the format of it and doing whatever algorithm you want to.


unsigned char* imageBytes = new unsigned char[imageTotalByteSize];

//fill the variable either loading yourself or using a lib

for(unsigned long i = 0; i < imageTotalByteSize; i++)
{
    imageBytes[0] = 0; //number from 0~255 representing the first pixel's Red channel
    imageBytes[1] = 0; //number from 0~255 representing the first pixel's Blue channel
    imageBytes[2] = 0; //number from 0~255 representing the first pixel's Green channel

    //Do whatever you want with the first pixel - I just set it to black
}

//Actually you might want to check it depending on the loader you use, some of them invert the image (meaning you start at the bottom) or some might even load it without doing any sorting (so BMPs would be at BGR format instead of RGB)

I'm guessing you could read the entire image, and check if the pixel's darker than a certain amount (all three values < 75) or just take the average of the three or something so it makes a black/white one.

Then you either write over these values or write in another array of the same size. But that's still not yet done, the array is only some data in the memory not the actual image file.

Now you have to save that data into an image file of your own, and I'm not sure how you can do it but surely there's a lib for that. If you don't want to take your time setting it up, check the BMP's file format, it's really easy and fast to make your own (because it's uncompressed, so you only have to worry about the headers, which is setting the right width/height, bits, etc) and then writing it to a binary file, name it "myImage.bmp" and that's it...


I would like to know if it is possible to create a normal texture of a given texture programatically, and what i have to know to make something like this.

It's "impossible" in the sense that you are asking for texture information that isn't there. It's "possible" in the sense that you can try to fake it and might get something that looks good - but this really depends on the kinds of texture you're inputting, and what assumptions you're making about it. For instance, if you have a photo of a leaf, or grass or something, you could make assumptions that it's being lit from a certain angle, and then interpret light and dark areas as changes in height for a bump map.

There are a number of tools available that attempt to do this.

Following on from the link that Danicco posted (link)...

A pretty easy trick is to open your original image in Photoshop and create a new layer above it. Fill it with 50% grey (RGB 128,128,128) and set it to 50% transparent. You can then trace out all the details you want to include in the normal map (lightening and darkening as appropriate). FInally, delete the base layer and run it through the NVidia plugin.

Voila, a correctly formed normal map!

I am having the same concern. My approach (unless someone comes up with something better) is:

- to create high-polly meshes in 3DSMax

-use 3DSMax texture and lighting to render the color texture with an orthographic camera

-take the high-polly meshes to a mapper program (will have to make it myself) which will take height measurements (through collision detection) to generate a height map

-use that height map to generate the normal map

That's a long process, but I think it's fool-proof.

Currently, I'm just taking the color map and using D3DXComputeNormaMap(...) to generate the normal map. As stated earlier, this doesn't work correctly, but it works fine for testing.

This topic is closed to new replies.

Advertisement