How To Install bcd on Fedora 34

bcd is Bayesian Collaborative Denoiser for Monte-Carlo Rendering Bayesian Collaborative Denoiser for Monte-Carlo Rendering

Introduction

In this tutorial we learn how to install bcd on Fedora 34.

What is bcd

BCD allows to denoise images rendered with Monte Carlo path tracing and provided in the form of their samples statistics (average, distribution and covariance of per-pixel color samples). BCD can run in CPU (e.g., renderfarm) or GPU (e.g., desktop) mode. It can be integrated as a library to any Monte Carlo renderer, using the provided sample accumulator to interface the Monte Carlo simulation with the BCD internals, and comes with a graphics user interface for designing interactively the denoising parameters, which can be saved in JSON format and later reused in batch. BCD has been designed for easy integration and low invasiveness in the host renderer, in a high spp context (production rendering). There are at least three ways to integrate BCD in a rendering pipeline, by either * Dumping all samples in a raw file, using the raw2bcd tool to generate the rendering statistics from this file and then running the BCD using the CLI tool. * Exporting the mandatory statistics from the rendering loop in EXR format and running the BCD CLI tool to obtain a denoised image. * Directly integrating the BCD library into the renderer, using the sample accumulator to post samples to BCD during the path tracing and denoising the accumulated values after rendering using the library. bcd 1.1 4.20180610gitd94c9fa.fc34 x86_64 135 k bcd-1.1-4.20180610gitd94c9fa.fc34.src.rpm fedora Bayesian Collaborative Denoiser for Monte-Carlo Rendering https BSD and AGPLv3+ BCD allows to denoise images rendered with Monte Carlo path tracing and provided in the form of their samples statistics (average, distribution and covariance of per-pixel color samples). BCD can run in CPU (e.g., renderfarm) or GPU (e.g., desktop) mode. It can be integrated as a library to any Monte Carlo renderer, using the provided sample accumulator to interface the Monte Carlo simulation with the BCD internals, and comes with a graphics user interface for designing interactively the denoising parameters, which can be saved in JSON format and later reused in batch. BCD has been designed for easy integration and low invasiveness in the host renderer, in a high spp context (production rendering). There are at least three ways to integrate BCD in a rendering pipeline, by either * Dumping all samples in a raw file, using the raw2bcd tool to generate the rendering statistics from this file and then running the BCD using the CLI tool. * Exporting the mandatory statistics from the rendering loop in EXR format and running the BCD CLI tool to obtain a denoised image. * Directly integrating the BCD library into the renderer, using the sample accumulator to post samples to BCD during the path tracing and denoising the accumulated values after rendering using the library.

We can use yum or dnf to install bcd on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install bcd.

Install bcd on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install bcd using dnf by running the following command:

sudo dnf -y install bcd

Install bcd on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install bcd using yum by running the following command:

sudo yum -y install bcd

How To Uninstall bcd on Fedora 34

To uninstall only the bcd package we can use the following command:

sudo dnf remove bcd

bcd Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/8f2c41f8f67d05f6e96b227214612fea8c7cf0
/usr/lib/.build-id/66
/usr/lib/.build-id/66/59ac7a7cd8cb5f09a38bf4e050d7fda73d2bd9
/usr/lib64/libbcdcore.so.0
/usr/lib64/libbcdcore.so.0.0.0
/usr/lib64/libbcdio.so.0
/usr/lib64/libbcdio.so.0.0.0
/usr/share/doc/bcd
/usr/share/doc/bcd/README.md
/usr/share/licenses/bcd
/usr/share/licenses/bcd/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/8b
/usr/lib/.build-id/8b/8595890377fc2f2b2f2bcbbc9418c6e85a3fb2
/usr/lib/.build-id/92
/usr/lib/.build-id/92/8875168ccdf966ec9c8922afe100138da55d27
/usr/lib/libbcdcore.so.0
/usr/lib/libbcdcore.so.0.0.0
/usr/lib/libbcdio.so.0
/usr/lib/libbcdio.so.0.0.0
/usr/share/doc/bcd
/usr/share/doc/bcd/README.md
/usr/share/licenses/bcd
/usr/share/licenses/bcd/LICENSE.txt

References

Summary

In this tutorial we learn how to install bcd on Fedora 34 using yum and dnf.