Hi! I’m a technical director at Pixar. I love computer graphics, especially in the context of animation, video games, and vr/ar/mr. Feel free to reach out!
Implementing an algorithm sounds scary, but in reality, we're just taking a recipe and translating it into a language the computer can understand (code). I thought it would be fun to make a tutorial on implementing a simple graphics algorithm. From the title, you'll know we're going to be implementing gaussian blur, with the help of OpenCV. OpenCV is a computer vision library you can use in Python to do lots of cool things, from face recognition to image segmentation. In fact, it has a gaussian blur implementation built in to it! We won't be using that though, of course - what we will use is its ability to easily read and write images, as well as comparing our implementation of gaussian blur to its implementation. Setup Before we dive into code, we need to get 2 things done: 1) Understand the gaussian blur algorithm (recipe) 2) Install OpenCV and numpy (if you don't have them) First, let's understand gaussian blur. Since we're implementing it in code, we can...
In my free time, I've been developing a digital trading-card game in Unity with my twin brother. We had accumulated a large amount of card data in a Google Sheet, and when it came time to start porting them into Scriptable objects in our Unity project, I decided I would rather spend some time trying to automate this process. The goal of this was simply to allow us to use the Google Sheet as our card database, and have the Unity project automatically populate its internal Scriptables folder with the appropriate card Scriptables based on the data present in the Sheet. The first step I took was determining how to get Google Sheets and Unity to talk to each other. After some initial research, I determined that there were two possible courses of action - I could utilize Google's C# API to access Google Sheets directly with Unity, or I could write a Python script using Google Sheet's API that acted as a sort of middle-man between the two services. There were several fact...
I hit a huge milestone in my career last month, one that I don't think I'll ever forget: I got my first (real) feature film credit. Why am I prefacing it with (real)? Well, technically I have an intern credit in Spies In Disguise , Blue Sky's last film to release before it was closed. That one was definitely cool, and it was really fun to go see the film in theaters with friends while in college and have them get excited to see my name. However, I actually didn't work on that film - Blue Sky simply gives their interns a credit on whatever film comes out next after their internship. I spent that summer working on Nimona , which as you may already know, was re-done by DNEG after Blue Sky's closure. They gave credits to all the full-time Blue Sky employees on the film, so I missed out on that. So, when Elemental came out in theaters on June 16th, 2023 - that was my true "real" first film credit, in the sense that I actually worked on the film! It felt ext...
Comments
Post a Comment