TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Physically Based Rendering: From theory to implementation (2016)

243 pointsby alasrabout 3 years ago

12 comments

pixelpoetabout 3 years ago
Ahhh, the 2nd rendering bible, together with Eric Veach&#x27;s thesis: <a href="https:&#x2F;&#x2F;graphics.stanford.edu&#x2F;papers&#x2F;veach_thesis&#x2F;" rel="nofollow">https:&#x2F;&#x2F;graphics.stanford.edu&#x2F;papers&#x2F;veach_thesis&#x2F;</a><p>I&#x27;ve spent my entire life studying this stuff and feel extremely lucky on so many levels: that we have these incredible computers which can actually do the computation, that we happen to have such a powerful theory that can model and even predict visual reality, and perhaps most of all, that a single person can learn all this stuff and carry it around with them everyday - it&#x27;s really changed how I see the world.<p>My deepest thanks go to those who have developed and passed all this on through their papers and books; it&#x27;s literally what I&#x27;m getting the meaning of life from.
评论 #30715293 未加载
评论 #30717019 未加载
评论 #30719570 未加载
评论 #30717311 未加载
tylermwabout 3 years ago
Note: the 4th edition of this book will likely be out by the end of this year, and cover GPU pathtracing. (I believe the free web edition will be released a few months after the hardback)<p>The Early Release (still in-development) version of pbrt-v4 can be found here:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;mmp&#x2F;pbrt-v4" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mmp&#x2F;pbrt-v4</a>
评论 #30715536 未加载
评论 #30714970 未加载
touisteurabout 3 years ago
Haven&#x27;t seen it mentioned in here: Matt Phar is also behind ispc, a subset of C (?) in the spirit of SPMD, and an optimizing compiler (based on llvm iirc). It can target Intel AVX (up to avx512, I think?) and is quite fun to work with. It can help out if you&#x27;re in a rut of using intrinsics and cursed cuda kernels. A fresh take on a programming model.<p>I recommend taking a look at the amazing story behind it <a href="https:&#x2F;&#x2F;pharr.org&#x2F;matt&#x2F;blog&#x2F;2018&#x2F;04&#x2F;30&#x2F;ispc-all" rel="nofollow">https:&#x2F;&#x2F;pharr.org&#x2F;matt&#x2F;blog&#x2F;2018&#x2F;04&#x2F;30&#x2F;ispc-all</a> .<p>It&#x27;s very interesting to see not only the pure tech part, but also the disheartening lack of interest at Intel on the subject. Missed opportunity I think... You can feel a lot of fun turning into a lot of... Sadness? in the end.<p>Really a big fan of all things Matt Phar, I hope he has the time of his life at nvidia and that they put him to good use!
corysamaabout 3 years ago
Fun Facts:<p>The book is a &quot;literate program&quot;. You can run the book through a parser and it will give you the compliable working source of the complete renderer it is describing. <a href="https:&#x2F;&#x2F;www.pbr-book.org&#x2F;3ed-2018&#x2F;Introduction&#x2F;Literate_Programming" rel="nofollow">https:&#x2F;&#x2F;www.pbr-book.org&#x2F;3ed-2018&#x2F;Introduction&#x2F;Literate_Prog...</a><p>It is the only book to win an Oscar <a href="https:&#x2F;&#x2F;www.oscars.org&#x2F;news&#x2F;19-scientific-and-technical-achievements-be-honored-academy-awardsr" rel="nofollow">https:&#x2F;&#x2F;www.oscars.org&#x2F;news&#x2F;19-scientific-and-technical-achi...</a>
评论 #30717971 未加载
blenderdtabout 3 years ago
This book looks really great but also advanced.<p>If you would like to take some first steps into this domain I can recommend Ray Tracing in One Weekend [1]. Not only will you learn how to write a path tracer, but it also touches on things like motion blur and animation. For me it was one of the best starting points because it was very simple to follow.<p>[1] <a href="https:&#x2F;&#x2F;raytracing.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;raytracing.github.io&#x2F;</a>
ninkendoabout 3 years ago
“Physically Based” always seemed to be a grammatical error to me.<p>“Physically” is an adverb, which should modify an adjective or verb. So parsing the phrase, “physically based” implies that “based” is used as an adjective or verb, which would imply that “physically based rendering” is a special form of “based rendering”, which makes no sense.<p>“What kind of rendering is it? Based rendering. What kind of Based rendering? Well, Physically Based, of course.”<p>It should probably instead be “physics based rendering”, right?<p>Edit: english.stackexchange seems to agree, although it’s closed as offtopic: <a href="https:&#x2F;&#x2F;english.stackexchange.com&#x2F;questions&#x2F;165416&#x2F;is-physically-based-rendering-grammatically-correct#428679" rel="nofollow">https:&#x2F;&#x2F;english.stackexchange.com&#x2F;questions&#x2F;165416&#x2F;is-physic...</a>
评论 #30718933 未加载
tcook_sucks_xieabout 3 years ago
If you&#x27;re interested in PBR in addition to this book I&#x27;ve found the filament write up on their method extremely useful too <a href="https:&#x2F;&#x2F;google.github.io&#x2F;filament&#x2F;Filament.md.html" rel="nofollow">https:&#x2F;&#x2F;google.github.io&#x2F;filament&#x2F;Filament.md.html</a>
dannyzabout 3 years ago
I always love seeing PBR here. I work in atmospheric science, in particular modelling of radiation in the atmosphere, and the equations that we use are identical to that of PBR. The main difference is that in the atmosphere you are more concerned with processes along the ray, e.g. Rayleigh scattering, clouds, or absorption&#x2F;emission from trace species in the atmosphere, while in rendering it is all about surface effects.
评论 #30726144 未加载
magicalhippoabout 3 years ago
One of the best technical books I&#x27;ve read. A lot of books on the subject are math heavy but lacking in implementation detail, others gloss over the math and implement the easy stuff.<p>This book has a great mix IMHO, going into the math as well as tricky implementation details yet in a very approachable manner.<p>Lots of great times were had as a result of this book.
评论 #30719759 未加载
2pEXgD0fZ5cFabout 3 years ago
&gt; This book assumes existing knowledge of computer graphics at the level of an introductory college-level course, although certain key concepts such as basic vector geometry and transformations will be reviewed here.<p>Had this book on my &quot;to read&quot; list for a while. Given that it appears to be more rigorous than my previous contact with the world of rendering, and since this is just a hobby of mine:<p>What pre-knowledge (topics, math, other sources or books) offers a solid preparation to fully tackle the pbr book?
评论 #30719598 未加载
评论 #30717388 未加载
评论 #30717259 未加载
dddnzzz334about 3 years ago
So, can I just start reading this book chapter-by-chapter implementing what I learnt in a language of my choice? What is the optimal way to go through this book?
评论 #30715583 未加载
评论 #30715819 未加载
评论 #30717499 未加载
评论 #30717644 未加载
emilfihlmanabout 3 years ago
The name has always been an annoyance of mine.