Physically Based Rendering のインストール(GitHub の mmp/pbrt-v4 を使用,Windows 上)

前準備(Git, cmake, マイクロソフト C++ ビルドツール等のインストール)

Visual Studio 2022 Build Toolsとランタイムのインストール

管理者権限でコマンドプロンプトを起動(手順:Windowsキーまたはスタートメニュー > cmd と入力 > 右クリック > 「管理者として実行」)し、以下を実行する。管理者権限は、wingetの--scope machineオプションでシステム全体にソフトウェアをインストールするために必要である。


REM Visual Studio 2022 Build Toolsとランタイムのインストール
winget install --scope machine Microsoft.VisualStudio.2022.BuildTools Microsoft.VCRedist.2015+.x64
set VS_INSTALLER="C:\Program Files (x86)\Microsoft Visual Studio\Installer\setup.exe"
set VS_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools"
REM C++開発ワークロードのインストール
%VS_INSTALLER% modify --installPath %VS_PATH% ^
--add Microsoft.VisualStudio.Workload.VCTools ^
--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 ^
--add Microsoft.VisualStudio.Component.Windows11SDK.22621 ^
--includeRecommended --quiet --norestart

Git のインストール

Git のページ https://git-scm.com/ からダウンロードしてインストール:

CMake のインストール

CMake の公式ダウンロードページ: https://cmake.org/download/

github の mmp/pbrt-v4 のインストール

URL: https://github.com/mmp/pbrt-v4

Windows での手順を下に示す.Ubuntu でも同様の手順である.

  1. Windows で,管理者権限コマンドプロンプトを起動(手順:Windowsキーまたはスタートメニュー > cmd と入力 > 右クリック > 「管理者として実行」)。
  2. github の mmp/pbrt-v4 のダウンロード

    glog,openexr,ptex,zlib が合わせてダウンロードされる.

    cd /d c:%HOMEPATH%
    rmdir /s /q pbrt-v4
    git clone --recursive https://github.com/mmp/pbrt-v4
    

    (以下省略)
  3. cmake の実行

    cmake のオプションの 「Visual Studio 17 2022」の部分は, 使用する Visual Studio のバージョンに合わせること. Visual Studio 2022 のときは,「Visual Studio 17 2022」. Visual Studio 2019 のときは,「Visual Studio 16 2019」.

    cd /d c:%HOMEPATH%
    cd pbrt-v4
    rmdir /s /q build
    mkdir build
    cd build
    cmake .. -G "Visual Studio 17 2022" -A x64 -T host=x64
    

    (以下省略)
  4. cmake の結果の確認

    エラーメッセージが出ていないことを確認する.

  5. ビルド操作,インストール操作
    cmake --build . --config RELEASE --target INSTALL -- /m:4
    
  6. 結果の確認

    エラーメッセージが出ていないことを確認する.

  7. Windowsシステム環境変数 PATH に,c:\Program Files\PBRT-V4\bin を追加することにより,パスを通す

    Windows で,管理者権限コマンドプロンプトを起動(手順:Windowsキーまたはスタートメニュー > cmd と入力 > 右クリック > 「管理者として実行」)。

    次のコマンドを実行する.

    powershell -command "$oldpath = [System.Environment]::GetEnvironmentVariable(\"Path\", \"Machine\"); $oldpath += \";c:\Program Files\PBRT-V4\bin\"; [System.Environment]::SetEnvironmentVariable(\"Path\", $oldpath, \"Machine\")"
    

試しにレンダリングを行ってみる

  1. Windows では,コマンドプロンプト管理者として実行する.
  2. GitHub の mmp/pber-v4-scenes のダウンロード
    cd /d c:%HOMEPATH%
    git clone --recursive https://github.com/mmp/pbrt-v4-scenes
    
    cd /d c:%HOMEPATH%
    cd pbrt-v4
    "c:\Program Files\PBRT-V4\bin\pbrt.exe" --outfile a.png ..\pbrt-v4-scenes\killeroos\killeroo-simple.pbrt