How to make a photorealistic render in Processing?

Hello! How can i create a photorealistic 3D render in processing (as in the attached picture)?
444

1 Like

Hi @Nik,

For this, you will need whatā€™s called a PBR (Physically Based Renderer).

I remember someone posted a Processing library to create physically based renders with processing:

I donā€™t know if this is properly working, still up to date, and what features it supports though.

But, in a general manner, processing is a really, really bad tool for this. You already have plenty of dedicated softwares available to you for download (some free, some not) that are dedicated to this specific task (because it is a really complicated task). From the top of my head you have:

  • Cycle ā† I would advise you to do this one since it is developped by the blender 3D team, is completely free and is quite powerful even though the learning curve can be a bit though.
  • Arnold
  • Lux Core Render
  • Maxell Render
  • V-ray
  • ā€¦

Now this is said, if your goal is to learn how those renders work internally and you want to try coding your own version, then I would advise you this website.

I also had a youtube playlist of a professor lectures on this topic but I canā€™t find it anymore. Iā€™ll update my post if I find it.

3 Likes

one other way is to let processing export a text file (essentially a Script) that can be executed in old POVray which is a cool renderer: https://www.povray.org

I donā€™t know if this still is possible but I used to do it: https://www.youtube.com/watch?v=ywzFigk-wfI

I think a current renderer program is also Blender, but I donā€™t if you can script it with a text file.

1 Like

Thanks everyone for the answers! The picture above was created by me in one of the 3d programs + using the render. I realized that Processing is not suitable for these purposes.

1 Like