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...
Pictured: Me on Pixar's campus in November 2020, aka before the pandemic When I heard I would be flown out to San Francisco for a final round of interviews at Facebook, I immediately thought -- maybe I can finally visit Pixar while I'm there! For context, most of my college friends had been able to see the campus in previous years, so I felt a little left out. Of course, I also generally wanted to see the campus for myself, catch up with some good friends, and get some goodies from the merch store! So, after my interviews wrapped up, I took a ~40 minute Uber ride to Emeryville. When I was there, I talked to a recruiter a little bit about future openings, as at the time I was set to graduate soon. While I flew back to Texas, I felt like there wasn't much chance I'd be working at Pixar anytime soon, but I was glad I finally got a tour of the campus and hung out with my friends. Little did I know! Just two months later, I'd be offered ...
Comments
Post a Comment