Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/laurent-lu/TMbLM-Rendering
21 October 2023, 05:38:44 UTC
  • Code
  • Branches (1)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/main
    No releases to show
  • 522c671
  • /
  • README.md
Raw File Download
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge Iframe embedding
swh:1:cnt:9d8b1b427ac30ef6bb68491d532b2e1f553243fb
origin badgedirectory badge Iframe embedding
swh:1:dir:522c671fbe6c027b6b3f1158420d4def95b6b3c8
origin badgerevision badge
swh:1:rev:26975e6f47f8c0b63f37e5e3f9c90d051ac25209
origin badgesnapshot badge
swh:1:snp:a276e74c1cc68176a285facfb42032a61eefde1b
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: 26975e6f47f8c0b63f37e5e3f9c90d051ac25209 authored by Joël Randrianandrasana on 20 September 2021, 14:27:13 UTC
* README: Windows 10 build instructions: Added note related to Mitsuba's GUI issue
Tip revision: 26975e6
README.md
# Transfer Matrix Based Layered Materials Rendering
This is the code release attached to the paper [Transfer Matrix Based Layered Materials Rendering](https://hal.univ-reims.fr/hal-03262831) presented at SIGGRAPH 2021.

![shotCam](misc/teaser.png)

## Overview

This repository provides three BSDF plugins for the Mitsuba 0.6 renderer (https://github.com/mitsuba-renderer/mitsuba):

- **tm2**: Implements the 2-flux transfer model for opaque materials
- **tm2_dielectric**: Implements the 2-flux transfer model for transmissive materials
- **tm6**: Implements the 6-flux transfer model for opaque materials

**Notes**: Supplied code and data have been tested and validated on Windows 10 MSVC 2017 64-bits.

## Build instructions for Windows 10

### Prerequisities

- Visual Studio Community 2017 with "C++ Desktop Development" tools: https://docs.microsoft.com/en-us/cpp/build/vscpp-step-0-installation?view=msvc-150

- Python 2.7.18: https://www.python.org/downloads/. Please make sure to enable the **"Add python.exe to Path"** option during the installation process.

- Git command line client: https://git-scm.com/

### Cloning Mitsuba

For the sake of simplicity, we assume **C:/mitsuba/** as install directory, but the process remains valid for any other target location.

In a Git Bash prompt:

- $ cd /c/
- $ git clone https://github.com/mitsuba-renderer/mitsuba
- $ cd mitsuba
- $ git clone https://github.com/mitsuba-renderer/dependencies_win64 dependencies
- $ cp /c/mitsuba/dependencies/lib/*.dll /c/mitsuba/dependencies/bin/

### Installing SCons

Mitsuba uses SCons (https://www.scons.org/) as its internal build system.

To install SCons, uncompress the archive **C:/mitsuba/dependencies/scons-2.5.1.zip** and type the following commands in a VS2017 command prompt:

- $ cd "C:\mitsuba\dependencies\scons-2.5.1"
- $ python setup.py install

### Cloning the code attached to the paper

In a Git Bash prompt:

- $ cd /c/
- $ git clone https://github.com/laurent-lu/TMbLM-Rendering.git

### Building the solution

- Copy all the files from **C:/TMbLM-Rendering/plugins/** to **C:/mitsuba/src/bsdfs/**

- Add the following lines to **C:/mitsuba/src/bsdfs/SConscript** just before the **Export('plugins')** directive in order to include the plugins files in the Mitsuba build:

```
plugins += env.SharedLibrary('tm2', ['tm2.cpp'])
plugins += env.SharedLibrary('tm2_dielectric', ['tm2_dielectric.cpp'])
plugins += env.SharedLibrary('tm6', ['tm6.cpp'])
```

- Open **C:/mitsuba/build/mitsuba-msvc2017.sln** with Visual Studio 2017
- Select **Release** as build configuration
- Build the solution (Menu **Build/Build solution**)
- Copy all the files from **C:/TMbLM-Rendering/data/** to **C:/mitsuba/dist/data/**

### Running the code

- Uncompress a scene .zip file from **C:/TMbLM-Rendering/scenes/**
- Drag and drop the XML scene file to **C:/mitsuba/dist/mitsuba.exe** to start the rendering. The corresponding output PNG image is saved in the scene folder at the end of the process.

**Notes**: Running **C:/mitsuba/dist/mtsgui.exe** results in a crash due to missing platform-specific Qt DLLs. Please see https://github.com/mitsuba-renderer/mitsuba/issues/52 where this issue is discussed and a workaround is proposed if Mitsuba's GUI is wanted.

## Citation

If you use this code, please consider citing our work accordingly: 

```
@inproceedings{randrianandrasana:2021:tmblmr,
 author = {Randrianandrasana, Joël and Callet, Patrick and Lucas, Laurent},
 title = {{Transfer Matrix Based Layered Materials Rendering}},
 journal = {ACM Transactions on Graphics (Proceedings SIGGRAPH)},
 volume = {40},
 number = {4},
 month = {August},
 year = {2021},
 doi = {10.1145/3450626.3459859}
}
```

## Contact

Feel free to send an e-mail to `j.randrianandrasana[at]gmail.com` or `laurent.lucas[at]univ-reims.fr` if you have any question.

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top