pixelated.glsl.ashimag.com pixelated.glsl.ashimag.com

pixelated.glsl.ashimag.com

Advanced GLSL

This blog is for projects created using shader language(GLSL) to process image and produce various effects. Globe rendering, screen space Ambient Occlusion and vertex pulsing. Subscribe to: Posts (Atom). Picture Window template. Template images by Airyelf.

http://pixelated.glsl.ashimag.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR PIXELATED.GLSL.ASHIMAG.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

January

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Sunday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.0 out of 5 with 6 reviews
5 star
1
4 star
0
3 star
4
2 star
0
1 star
1

Hey there! Start your review of pixelated.glsl.ashimag.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1.9 seconds

CONTACTS AT PIXELATED.GLSL.ASHIMAG.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Advanced GLSL | pixelated.glsl.ashimag.com Reviews
<META>
DESCRIPTION
This blog is for projects created using shader language(GLSL) to process image and produce various effects. Globe rendering, screen space Ambient Occlusion and vertex pulsing. Subscribe to: Posts (Atom). Picture Window template. Template images by Airyelf.
<META>
KEYWORDS
1 advanced glsl
2 pages
3 globe rendering
4 ambient occlusion
5 image post processing
6 projects implemented
7 posted by
8 ashima
9 no comments
10 email this
CONTENT
Page content here
KEYWORDS ON
PAGE
advanced glsl,pages,globe rendering,ambient occlusion,image post processing,projects implemented,posted by,ashima,no comments,email this,blogthis,share to twitter,share to facebook,share to pinterest,my projects,webgl path tracer,path trace,fresnel,wavefx
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Advanced GLSL | pixelated.glsl.ashimag.com Reviews

https://pixelated.glsl.ashimag.com

This blog is for projects created using shader language(GLSL) to process image and produce various effects. Globe rendering, screen space Ambient Occlusion and vertex pulsing. Subscribe to: Posts (Atom). Picture Window template. Template images by Airyelf.

INTERNAL PAGES

pixelated.glsl.ashimag.com pixelated.glsl.ashimag.com
1

Advanced GLSL: Image post-processing

http://pixelated.glsl.ashimag.com/p/image-post-processing.html

Implemented various image effects using fragment shader. 1 Image Negative: The formula is very simple just deduct the rgb values of image from 1 i.e. 1 - rgb is the new color of the image. 2 Grey Scale: Greyscale image is an image in which the value of each pixel contains only the intensity of color at that pixel. Hence, the formula to calculate intensity is:. Vec3 W = vec3 (0.2125, 0.7154, 0.0721);. Float luminance = dot(rgb, W);. Then, just set the luminance value to be the rgb value for the pixel.

2

Advanced GLSL: About

http://pixelated.glsl.ashimag.com/2012/12/about.html

This blog is for projects created using shader language(GLSL) to process image and produce various effects. Globe rendering, screen space Ambient Occlusion and vertex pulsing. Subscribe to: Post Comments (Atom). Picture Window template. Template images by Airyelf.

3

Advanced GLSL: Globe Rendering

http://pixelated.glsl.ashimag.com/p/globe-rendering.html

I implemented the following feature as a part of image processing in fragment shader:. Bump mapped terrain using height maps. Rim lighting to simulate atmosphere. Nighttime lights on the dark side of the globe. Specular mapping using specular maps. Moving clouds using textures and transparency maps. Height map shading by changing the color of the terrain based on the height of the terrain using height map. Subscribe to: Posts (Atom). Picture Window template. Template images by Airyelf.

4

Advanced GLSL: Ambient Occlusion

http://pixelated.glsl.ashimag.com/p/ambient-occlusion.html

I used SSAO technique to implement ambient occlusion in sponza scene. I created 16 random samples and calculated occlusion based on the following assumptions:. 1 If the occluder point lies in the same plane as the occludee then, occlusion is 0. 2 If the occluder is below the occludee then again the occlusion is 0. 3 Also, the occlusion varies with occluder's distance from occludee. With out ambient occlusion. Result with Tea pot:. Subscribe to: Posts (Atom).

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

4

LINKS TO THIS WEBSITE

pixelated.ashimag.com pixelated.ashimag.com

Ashima Gupta: My Projects

http://pixelated.ashimag.com/p/projects.html

This page is to share the links to different project created by me. Ambient occlusion and vertex morphing. February 2, 2016 at 11:13 AM. Subscribe to: Posts (Atom). Ashima07gupta at gmail.com. Picture Window template. Template images by Airyelf.

pixelated.webgl.ashimag.com pixelated.webgl.ashimag.com

WebGL projects: Fresnel equations & subsurface scattering

http://pixelated.webgl.ashimag.com/2012/12/fresnel-refractionreflection-subsurface.html

Fresnel equations and subsurface scattering. Fresnel equations describe the reflection and transmission of rays through an object. In essence, when the rays reach the boundaryof two different objects then the part of the ray is reflected and part is refracted. I used russian roullette technique which determines either to refract or reflect based on the fresnel transmission coefficient. The working example can be seen at: Fresnel example. The results are as follows:. Subscribe to: Post Comments (Atom).

pixelated.cuda.ashimag.com pixelated.cuda.ashimag.com

CUDA Projects: Ray Trace - Shadows

http://pixelated.cuda.ashimag.com/2012/09/shadows.html

Ray Trace - Shadows. Shadow implementation process in Ray tracer:. To generate shadows, we need to traverse all the light sources and find if there is any object between currently intersected object and the light. If, there is an object then the object is in shadow and we do not need to calculate the color of that pixel. Bool inshadow = false;. For(int i = 0 ;i numberoflights; i ){. LightDirection =normalise( light[i] - intersectionPoint);. LightOrigin = intersectionPoint;. LightDist = 100000.0f;.

pixelated.cuda.ashimag.com pixelated.cuda.ashimag.com

CUDA Projects: Ray Trace - Reflection & Refraction

http://pixelated.cuda.ashimag.com/2012/09/reflection-refraction.html

Ray Trace - Reflection and Refraction. Refraction: Working to correct black dots in the image. Subscribe to: Post Comments (Atom). Picture Window template. Template images by Airyelf.

pixelated.webgl.ashimag.com pixelated.webgl.ashimag.com

WebGL projects: Color accumulation & refraction/reflection

http://pixelated.webgl.ashimag.com/2012/12/accumulated-colors-properly.html

Color accumulation and refraction/reflection. Finally I got the color accumulation working. The color is accumulated by creating two textures. For the final color in the scene we access the colors from the texture and then render the final color to the texture. That way, we are constantly accessing textures from the previous frame and updating the texture in current frame with the final color. The technique which I described in my CUDA path tracer blog post. Subscribe to: Post Comments (Atom).

pixelated.ashimag.com pixelated.ashimag.com

Ashima Gupta: Welcome to Ashima's world of Graphics

http://pixelated.ashimag.com/2012/12/welcome-to-ashimas-world-of-graphics.html

Welcome to Ashima's world of Graphics. I graduated in Computer graphics and game Technology(CGGT) from University of Pennsylvania in Dec 2012. This website is a culmination of my efforts in the field of computer graphics in the last 1 year. I have implemented range of projects on different technologies which includes CUDA, OpenGL, WebGL, C , Unity3D, Motion Builder, and Maya. You can checkout these projects under "My Projects" tab of this website. Subscribe to: Post Comments (Atom).

pixelated.phys.ashimag.com pixelated.phys.ashimag.com

Physically Based Animation: About:

http://pixelated.phys.ashimag.com/2012/12/about.html

This page is dedicated to the projects I have implemented as a part of physically based animation. The list of projects implemented:. Particle based fluid simulation (SPH). Subscribe to: Post Comments (Atom). Picture Window template. Template images by Airyelf.

pixelated.webgl.ashimag.com pixelated.webgl.ashimag.com

WebGL projects: Fresnel

http://pixelated.webgl.ashimag.com/p/fresnel.html

This is a path tracer implemented in WebGL. This page may take some time to load because of WebGL. This instance of path tracer displays fresnel equation implementation. It also allows camera motion on mouse click movements. The direction of reflected ray is computed based on the laws of reflection, and the direction of refracted ray follows the Snell’s law with respect to the incident angle. Subscribe to: Posts (Atom). Picture Window template. Template images by Airyelf.

pixelated.cuda.ashimag.com pixelated.cuda.ashimag.com

CUDA Projects: Ray Trace - Diffuse lambertian surfaces

http://pixelated.cuda.ashimag.com/2012/09/diffuse-lambertian-surfaces.html

Ray Trace - Diffuse lambertian surfaces. This blog explains the implementation details of the diffuse lambertian surfaces. It states that the intensity of light on a diffuse surface is directly proportional to the cosine angle θ between the incoming light ray and the unit normal to the surface. In layman's language, if the angle is low light intensity is low and if angle is high intensity is high. Hence, applying lambert's law in ray tracer code will give diffuse lambertian surfaces.

UPGRADE TO PREMIUM TO VIEW 49 MORE

TOTAL LINKS TO THIS WEBSITE

58

OTHER SITES

pixelated.cuda.ashimag.com pixelated.cuda.ashimag.com

CUDA Projects

Ray Trace - Reflection and Refraction. Refraction: Working to correct black dots in the image. Ray Trace - Area Light and soft shadows. In order to check the light intersection with object, we need to fire only one ray in the direction of the point light from the currently intersected point. Area light work differently from the point light. As in area light we need to generate more rays towards the geometry representing area light. Hence, a lot more rays are required for the calculation of light. This bl...

pixelated.de pixelated.de

Pixelated - Home Page

I have no sub text. Welcome to Pixelated, the online gallery of digital photography from Royce Dodds. Over the next few pages I will be showing you images that I have taken or have digitized. Pixelated 2006 Royce Dodds Contact Me.

pixelated.deviantart.com pixelated.deviantart.com

pixelated (JT) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Digital Art / Artist. Deviant for 13 Years. This deviant's full pageview. Last Visit: 288 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Trave...

pixelated.ebscer.com pixelated.ebscer.com

Ebscer

Creating mobile apps and games for mobile phones and tablets since 2009. For my thoughts see news.ebscer.com.

pixelated.elfennau.net pixelated.elfennau.net

.::pixelated::. //graphics by trish

Your browser does not support inline frames or is currently configured not to display inline frames.

pixelated.glsl.ashimag.com pixelated.glsl.ashimag.com

Advanced GLSL

This blog is for projects created using shader language(GLSL) to process image and produce various effects. Globe rendering, screen space Ambient Occlusion and vertex pulsing. Subscribe to: Posts (Atom). Picture Window template. Template images by Airyelf.

pixelated.ie pixelated.ie

Pixelated.ie | Pixelated, Design studio based in Dublin, Ireland

We're here to make. See what we have done for our clients. Alan Ardiff is an Irish jewellery designer who works with a combination of gold and silver with a number of the jewellery pieces incorporating kinetic parts. Mazars Ireland and Suas. Mazars are partnered with Suas Educational Development and their literacy support programme. Mazars UK Catalyst Programme. Ridge 53 established in 1999 is the leading backpack brand in Ireland. They have built up a nationwide customer base of over 300 active reta...

pixelated.juliabendeler.com pixelated.juliabendeler.com

Julia Bendeler | Pixelated

pixelated.myrmid.com pixelated.myrmid.com

Pixelated

Hello Get a newer browser or enable frames, for the love of shit.

pixelated.net pixelated.net

Host Depot - Domain Names, Web Hosting, E-Mail, Microsoft Exchange, Dedicated Servers, Virtual Servers

Welcome to the new home for our web site. Pardon our dust as we are in the process of building our new web site. Please check back frequently as our new site will be available in the coming months. Provides a complete line of professional business-class services and outstanding customer support available 24 hours a day, 7 days a week to assist you. That's Why We're Here™. Please select the service you are interested in below:. For more information on our services, please visit our contact us.

pixelated.org pixelated.org

Australian Insurance Providers | Expansive

That's what we live for. Wix is an online website builder with a simple drag and drop interface, meaning you do the work online and instantly publish to the web. Try It Now! Don’t worry it’s for free. You can replace all this text with your own text. Want an easier solution for a Free Website? Head straight to Wix and immediately start customizing your website! Wix is an online website builder with a simple drag and drop interface, meaning you do the work online and instantly publish to the web.