User Tools

Site Tools


tutorials:basic-spectral-light-modeling

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tutorials:basic-spectral-light-modeling [2024/12/06 20:13] – extended, minor fixes MHtutorials:basic-spectral-light-modeling [2025/01/08 21:30] (current) MH
Line 1: Line 1:
 ====== Spectral Light Modelling ====== ====== Spectral Light Modelling ======
- 
-===== General Introduction ===== 
- 
-Light modelling generally involves three aspects: 
- 
-  * Global illumination model 
-  * Light sources 
-  * Local illumination model 
- 
-{{ :tutorials:light1.png?direct&400 |}} 
- 
-Whereas the Global illumination model handles the actual light computation, the Light sources are the light-emitting elements, and the Local illumination model defines the optical properties of the scene objects. 
- 
-In each aspect, computer graphics offers plenty of alternatives. 
- 
-{{ :tutorials:light2.png?direct&400 |}} 
- 
-Several of them are implemented in GroIMP as ready-to-use tools. 
- 
-GroIMP integrates two two main **light model implementations**, namely: 
- 
-  * Twilight, a CPU-based implementation  
-  * GPUFlux, a GPU-based implementation 
- 
-Both implementing different global illumination model for rendering and for light computation. 
- 
-{{ :tutorials:light3.png?direct&400 |}} 
- 
-In the following, only light computation or light modelling will be discussed. 
- 
- 
-Regarding light sources, GroIMP provides a complete set of possible implementations. They all implement the //Light// and //LightBase// interfaces, which makes them easy to handle and exchange. 
- 
-{{ :tutorials:light4.png?direct&200 |}} 
- 
-For the Local illumination model, which defines the optical properties of the scene objects such as values for absorption, transmission, and reflection, so-called shaders are used. 
- 
-{{ :tutorials:light5.png?direct&200 |}} 
- 
-GroIMP provides a set of standard shader implementations, e.g., for Lambert and Phong shading. Whereas the Lambertian model supports only diffuse reflection, the Phong reflection model (B.T. Phong, 1973) combines ambient, diffuse, and specular light reflections. 
- 
-{{ :tutorials:light6.png?direct&400 |}} 
- 
- 
-===== Spectral light modelling ===== 
- 
  
 These three core aspects of light simulation—global and local illumination models, and light sources—are the base for any light simulation. When it comes to spectral light simulations, specialized implementations of the aforementioned aspects are required, capable of simulating not only one or three light channels, as is typical for common light models, but also the entire light spectrum for different wavelengths. These three core aspects of light simulation—global and local illumination models, and light sources—are the base for any light simulation. When it comes to spectral light simulations, specialized implementations of the aforementioned aspects are required, capable of simulating not only one or three light channels, as is typical for common light models, but also the entire light spectrum for different wavelengths.
Line 322: Line 276:
 Phong myShader = new Phong(); Phong myShader = new Phong();
 myShader.setDiffuse(GREEN_SPD); myShader.setDiffuse(GREEN_SPD);
-myShader.setTrasnparency(RED_SPD);+myShader.setTransparency(RED_SPD);
  
  
tutorials/basic-spectral-light-modeling.1733512436.txt.gz · Last modified: 2024/12/06 20:13 by MH