Puzzler VR

Comment

Puzzler VR

As part of the Udacity VR Nanodegree program, I created a project to focus on the process of designing a mobile VR game starting from initial sketches and continuing through user testing iterations to reach a final product.

Read more on Medium

Comment

2 Comments

Scattering Data for Translucent Materials Available in PBRT

While going through my copy of Physically Based Rendering for the millionth time, I remembered that there is a nice utility function called GetVolumeScatteringProperties(). This function has access to a nice library of measured data from previous papers. The valid names are listed in core/volume.cpp, but for easier lookup they are also listed below.

2 Comments

Comment

Thesis Update

So far I have implemented a texture controlled approximation of heterogeneous subsurface scattering.  Now I am working on a more accurate Finite Element solution based on the phd work of Adam Arbree.

Comment

Advanced Ray Tracer: Speedy Bunnie

Comment

Advanced Ray Tracer: Speedy Bunnie

My ray tracer can now load .ply models and uses kd-trees (TA-B traversal) for acceleration. I used the high res model of the Standford Bunny which has around 69,000 triangles. Without any form of acceleration, the render times are over 1 hour for the basic ray tracer.

Comment

Thesis Proposal

1 Comment

Thesis Proposal

Abstract:Many real world materials exhibit complex subsurface scattering of light. This internal light interaction creates the perception of translucency for the human visual system. Translucent materials and simulation of the subsurface scattering of light has become an expected necessity for generating warmth and realism in computer generated imagery. The light transport within heterogenous materials, such as marble, has proved challenging to model and render.

1 Comment

Autostereograms

Comment

Autostereograms

sharkDepth
sharkDepth
rdotStereo
rdotStereo

"A stereogram is a pair of stereo images that provides the illusion of depth when viewed using a stereoscope. An autostereogram provides the illusion of depth from a single image without the need for a stereoscope. " The goal of this assignment was to create a autostereogram generator. I chose to do my implementation in Matlab. This will be the depth map used for all tests. Below is my random dot stereogram. Images can be enlarged by clicking on them.

As my extension, I chose to make a more appealing stereogram by using an image for my pattern. Below is the stereogram generated using a "hello kitty" image and the previously used shark depth map.

hk
hk
hkSterogram
hkSterogram

Comment

1 Comment

RenderMan food rendering continued

This is an update of how my food rendering is progressing.  I have not yet done a true shader for the mashed potatoes or the sauce and I still need to add displacement, specular, and subsurface scattering to the meat shader.  Also, I am still trying to work out the hypertexture shader and lighting to achieve a bread effect.  However, in my experiments I found that I still achieved an appealing cheese ball look.

1 Comment

1 Comment

Renderman Assignment

This is my image for the class Renderman contest. It was created using RIB archiving. Notable effects include subsurface scattering calculation, displacement mapping on the ground, and depth of field. A more detailed write up of the procedure is forthcoming.

1 Comment

1 Comment

Food Rendering: Grape Shader fix

I was able to find my error in applying subsurface scattering to my grape shader. I had an incorrect value in my rib file that wasn't allowing the entire irradiance point cloud to be baked out properly. I fixed the value and below are the renders with two different material presets.

1 Comment

Comment

Ray Tracer: Reflection

The next step in the ray tracer was to add reflection. The following scene was rendered using these rules:* Make the "back" sphere reflective (kr ≠ 0.0)

Comment

1 Comment

Ray Tracer: Procedural Shading

The goal for the next step of my ray tracer was to recreate the checkered floor procedurally.

Below is the same image with super sampling of n=3:

As a bonus, I created a second procedural texture by using a combination of sqrt and modulus to created curved purple and blue stripes.

Below is the same image with super sampling of n=3:

1 Comment