HowTo:Radiosity baking in Blender

From VsWiki
Revision as of 01:35, 18 June 2015 by Gonzo (talk | contribs) (Fix links.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Prelude

I tried making it easy for non-blenderheads to use this guide too but a bit of know how of blender is good (look at [1] if you need something to get you started). The method described here was developed and tested with Blender 2.37. Help the community by improving upon this if you find anything incorrect or missing.

Our goal

There is no such thing as the ambient lighting most 3D applications and games use, period. An exposed part of the model will receive more ambient light than parts hidden deep beneath pipes and plates. Since we can't simulate this in real-time (at the moment, at least) putting this information in the texture is the way to go. How, you ask? One method is guessing and painting by hand, a very time consuming method which is also likely to render less than stunning results.

Compare the following two pictures:

radio1.jpg


Even though two slightly different meshes were used it should illustrate the difference, clearly the lighting on the latter picture looks more natural.

radio2.jpg

Our weapon of choice for achieving the desired result is, as the title of the article ever so subtly suggests, radiosity [2]. Using radiosity no manual labour will be required as the computer will calculate the ambient intensities for us. In the end, this should slightly alleviate the texturing process and make for promising results.

A step by step guide

As I mentioned above our goal is to calculate some kind of ambient light dependent on the geometry, which we'll use radiosity for. If you don't know what radiosity is, please look it up before proceeding. All right! Just follow these steps:

  1. Load your UV-mapped object into Blender and put it on layer 1. Make sure it is UV-mapped! Also get rid of any lamps lingering in the scene.
    1. Select your model and in edit mode (press TAB do switch between edit and object modes) remove all duplicate vertices. You do this by selecting all vertices (A) and pressing W->Remove Doubles.
    2. Add an icosphere with its center roughly in the middle of your model (SPACE->Add->Mesh->Icosphere). This will be our ambient light source. Higher subdivision yields better results (you need a higher value for a mesh with many polygons, play around!) but longer calculation times, 4 should be sufficient.
    3. Scale up (S) the icosphere to encompass your entire model.
    4. In edit mode select all the faces (A) and flip the normals (W,9). In edit mode, enable normal drawing (done in the editing context, F9) and make sure they're really pointing inward the sphere. (Note that you must be in edit mode to see or enable the drawing of normals.)
    5. Go to the material buttons (F5) and add a new material to the sphere. Choose the desired light color (white, normally) and give the material some emission, you have to experiment with the emit value but 0.02 should be a good starting point.
  2. You're now ready to start calculating the radiosity. But before you start you might want to subdivide your mesh a few times, to get better results. Do it, say, twice (W,1 and repeat).
    1. Go to the shading context (F5) and then the radiosity buttons. Select both the meshes and click the Collect meshes-button. Switch from Solid to Gourad.
    2. i IMPORTANT: Set MaxEl (not ElMax!) to 1. This will ensure that Blender doesn't alter the mesh in any way.

      radio_panel.jpg

    3. Hit [Go] and lean back. Press ESC when you're happy with what you see or wait until it finishes. It shouldn't be all black, if it is something went wrong.
    4. This is optional but if the resulting mesh looks a little spotty or have artifacts you might want to perform Face filter or Element filter, or both.
    5. Save the radiosity information in a new mesh by pressing Add new meshes. Move it to layer 2 (M,2).
    6. Click Free Radio Data.
  3. Now it's time for a little cleaning up before we can bake the radiosity information to a texture. Remove the icosphere from the newly created mesh with the radiosity information. If you're not comfortable with blender, here's how you do it:
    1. Go to layer 2 (2). Select the mesh and enter edit mode (TAB). Remove double vertices with W->Remove Doubles. Hover the sphere with the mouse cursor and press L to select it then delete it using X->Vertices.
    2. Now, since using the radio tool erases all UV-information from the baked mesh we'll somehow need to transfer the vertex color information from the baked mesh to our original mesh. After trying various methods for doing this, none of which worked, I hacked together a small little script (see #Script) in python to do it.
      Load it, change the mesh names at the top of the file, run it and voila! For the blender impaired here's what you do:
    3. Press Shift+F11 to bring up the text editor, load the script from the menu or paste it and then press Alt+P to run it.
      Your original, UV-mapped, mesh should now have all the shading information stored safely in the color of each vertex. You should be able to verify this if you set your viewport shading mode to Shaded (make sure VCol Light is enabled for your material).
  4. The final step is to bake the vertex color information to texture using your favorite texture baking script.
    Enable VCol Paint and Shadeless.
    Run Texture baker (found under Scripts->UV and included with Blender). If it doesn't work the first time make sure your mesh is indeed on layer 1 and try again.

That's it!

You can do even more

Using the same technique you can do even more nifty stuff, such as baking glowmaps:

radio3.jpg


Common troubles

Problem: After calculating the radiosity and clicking Add new meshes the resulting mesh is split into several parts.
Solution: I don't know why this happens but fixing it is easy. Select all of the parts and join them (Alt+J) then remove doubles in edit mode (W,5). Someone on cgtalk suggested it might be caused by bad normals but I haven't been able to verify or reject this theory.

Problem: Man, it doesn't look pretty! It's spotty and ugly looking. Face and Element Filter doesn't do much good, either.
Solution: The face ratio between your model and the light source isn't good. Either subdivide the sphere more or do fewer subdivisions on the model.

Problem: The Texture Baker doesn't render anything or the wrong things. What's up?
Solution: The version of the Texture Baker currently bundled with blender (Blender 2.37a -> 0.2.6) is out of date and you can get the newest version of the script from the "Texture baker" homepage in the #Links 0.2.8 2005/7/20. See also the bug report here.

Problem: With MaxEl set to 1, simple models such as cubes don't look good at all.
Solution: Enter edit mode, select all vertices, press W key, and choose subdivide. The resulting radiosity calculation will run for longer and provide a more realistic solution.

Script

Just save this link as vccopy.py vccopy.py

(If it works better for you you can try using this link: vccopy.py)

HowTo:Radiosity_baking_in_Blender/vccopy.py - The clutter you see on this page is intended. See the source by editing the page.

Links