Computer Vision
Computer Vision
Miscellaneous C++

Project | Concurrent Traffic Simulation (C++)
This is a Udacity project building thread-safe communication protocol between vehicles and intersections using implementation of mutexes, locks, and conditional variables to create a simulation of traffic flow. The big green dots are simulated vehicles and small stationary dots are traffic lights at intersections, which control the flow of traffic by following traffic rules.

Project | System Monitor (C++)
This is a Udacity project building a System Monitor similar to htop in linux or task manager in windows to monitor vital system resources and processes. The project uses OOP principles to create multiple object classes for various aspects of the System Monitor. The project relies on the ncurses library which facilitates text-based graphical output in the terminal to display the output of the project.

Project | Memory Management (C++)
In this Udacity project, a Chatbot has been optimized for memory management by using C++ memory management concepts like smart points, move semantics, rule of five, ownership and memory allocation policies. Optimizing memory management ensures efficient use of memory without leaving holes in the memory, causing data races, and return of correct outputs to the user.