TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Why doesn't a 4k rendered game look as real as a DVD resolution movie?

1 点作者 fluffyspork超过 1 年前
The real time rendered parts. Obviously movie CGI frequently looks real.<p>Are there any examples of lower resolution games that look real?

3 条评论

shortrounddev2超过 1 年前
Pre-rendered CGI has the benefit of time. You can spend more processing power rendering light and effects via ray tracing or more computationally expensive rendering methods. It can take several seconds to render each frame because you only have to do it once. Real time rendering requires trade-offs, and only recently did real time ray tracing for light, shadows, and reflections become possible. Compare a game using traditional rendering (using PBR techniques and a light function called the BRDF) to a game using full ray tracing, and you&#x27;ll find the ray traced game to be more realistic. With PBR and the BRDF, all code is a kind of approximation for what the scene would look like based on our understanding of science. With Ray tracing, it&#x27;s closer to a physical simulation of light.<p>Additionally, movies are usually recorded in 24-30fps, while games are rendered at 60-120-240 FPS. People who are not used to 60FPS can find the smoothness jarring (I certainly don&#x27;t like watching 60fps scenes in movies, but regularly play games rendered at 60hz)
评论 #39206559 未加载
simonblack超过 1 年前
Rendered images can only contain what rendering has been programmed into it. An image of a real scene has millions of bits of detail that are missing from rendered scenes.<p>Example: blades of grass. A rendered scene with blades of grass would need to render thousands or even millions of random blades of grass. Who can justify programming each and every one of those. A real scene contains all those blades of grass in the physics of focusing light.
RegnisGnaw超过 1 年前
Real time rendering limits the resources (CPU&#x2F;GPU available) compared to re-rendered stuff (movies, TV shows, pre-rendered cut scenes). This puts a limit on the complexity of the models or environments in the scene, which makes it look less real.