How to view .PBRT file image

I am new to using PBRT (Physical Ray Tracing). How to view image file .pbrt.

I performed the following steps from the command line:

set PBRT_SEARCHPATH=C:\pbrt-1.03-lc\bin
    cd C:\pbrt-1.03-lc\scenes\Conference
    ..\..\bin\pbrt.exe conference.pbrt
+3
source share
1 answer

A .pbrt file is a scene description file or a file containing a triangular grid.

This file is just a description of what is used to render the image.

To render the image, you need to run the \ bin \ pbrt.exe file as follows:

\ bin \ pbrt.exe conference.pbrt -outfile conference.tga

This command will display the image and save it in a file called conference.tga

+8
source

All Articles