Page 2 of 2

Re: Normal maps

Posted: Mon Oct 21, 2013 10:09 pm
by face_off
If they are outputting grayscale, then they are bump maps. Normal maps will be color.

Paul

Re: Normal maps

Posted: Wed Oct 23, 2013 12:47 pm
by samhal
A little more 'research' and I found this tidbit for those interested (or didn't know):
Bump/normal maps add extra lighting detail that doesn't exist in geometry. The main difference between the two is the input data (texture).

Normal mapping takes a RGB texture, that makes up normals (ie, r=x, g=y, b=z), and is accessed directly by the pixel shader.

Bumpmapping takes a grey scale image, or 'Height Map', and the pixel shader computes the normals from that to calculate lighting.


The idea is pretty much the same, just shifting where the processing is getting done.
Normal mapping preprocesses the data, usually making the output quicker, but uses more data to store the normal map (rgb), hence more memory requirements. Bump mapping is post processing, usually slower to output, but saves space storing bump maps.
This explains why I saw zero difference between the two in Octane, all things being equal...meaning they were created at the same level of strength and detail.

Paul, is there any way to increase the maximum from "1" in effect to exaggerate the effect of the maps rather than modifying existing maps? Sometimes "1" just doesn't seem enough.

Thanks!
Sam

Re: Normal maps

Posted: Wed Oct 23, 2013 8:56 pm
by face_off
is there any way to increase the maximum from "1" in effect to exaggerate the effect of the maps rather than modifying existing maps? Sometimes "1" just doesn't seem enough.
Changing the alpha can sometimes help - but generally you need max maximum color range in the map to get maximum range in the render. Octane will ignore anything in the bump if you have something plugged into the normal.

Paul

Re: Normal maps

Posted: Thu Oct 24, 2013 1:26 am
by xxdanbrowne
For what it's worth my own 2c is this:

In my experience normal maps are often used for the larger scale macro detail whereas bump maps are used for the finer level of detail.