Giter Club home page Giter Club logo

basic-raytracing's Introduction

Compilation

This project requires c++20 standard and it is meant to be compiled with g++ 11 or newer. Other C++ compilers such as clang or msvc have not been tested. The compilation process requires cmake.

Clone this repository:

git clone https://github.com/fernando-lahoz/basic-raytracing.git
cd basic-raytracing

Set up the CMake project:

cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -S . -B ./build -G Ninja

Compile:

cmake --build build --config Release --target all

Executables

As a result, the following executables should appear inside ./bin directory:

  • renderer: renders the compiled scene using one of the available algorithms.
  • tone_mapper: applies a tone mapping function to the luminance of every pixel.

Run with --help for additional information of usage.

Usage examples

Photon Mapping

# Linux shell
./bin/renderer --algorithm=photon-mapping \
           --paths-per-pixel=10 \
           --photon-mapping-evaluation-radius=0.4 \
           --photon-mapping-evaluation-photons=1000 \
           --photon-mapping-total-saved-photons=100000 \
           \
           --dimensions=500:500 \
           --color-resolution=32bit \
           --output-format=bmp \
           \
           ./scenes/cornel_box_diffuse_point.scene \
           ./images/output_image.bmp

./bin/tone_mapper --strategy=gm:2.2 ./images/output_image.bmp ./images/output_image_mapped.bmp
# Windows powershell
chcp 65001; ./bin/renderer --algorithm=photon-mapping --paths-per-pixel=10 --photon-mapping-use-next-event-estimation --photon-mapping-evaluation-radius=0.4 --photon-mapping-evaluation-photons=1000 --photon-mapping-total-saved-photons=100000 --dimensions=256:256 --color-resolution=32bit --output-format=bmp ./scenes/cornel_box_diffuse_point.scene ./images/output_image.bmp

./bin/tone_mapper --strategy=gm:2.2 ./images/output_image.bmp ./images/output_image_mapped.bmp

Path Tracing

# Linux shell
./bin/renderer --algorithm=path-tracing \
           --paths-per-pixel=100 \
           \
           --dimensions=256:256 \
           --color-resolution=32bit \
           --output-format=bmp \
           \
           ./scenes/cornel_box_diffuse_point.scene \
           ./images/output_image.bmp

./bin/tone_mapper --strategy=gm:2.2 ./images/output_image.bmp ./images/output_image_mapped.bmp
# Windows powershell
chcp 65001; ./bin/renderer --algorithm=path-tracing --paths-per-pixel=100 --dimensions=256:256 --color-resolution=32bit --output-format=bmp ./scenes/cornel_box_diffuse_point.scene ./images/output_image.bmp

./bin/tone_mapper --strategy=gm:2.2 ./images/output_image.bmp ./images/output_image_mapped.bmp

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.