C++ PROJECT
Image Processing Application
This project was a part of my Advanced Programming Fundamentals class at the University of Florida and was created in C++. The application reads in binary data and performs a number of separate manipulations, such as multiplication, subtraction, overlay, manipulating color channels, and more. Afterward, the application outputs the new binary data as a viewable TGA format image.

The complex task of manipulating the individual bytes that make up a pixel gave me the opportunity to learn a great deal about traversing large datasets, pointer arithmetic, and managing dynamic memory. I was also able to practice writing unit tests and debugging my own program.