During my C++ computational course, I strengthened my C++ skills through many projects. For the final course project, I was given the task of creating an ultrasound imaging program using C++. In this project, I mainly focused on the application C++ algorithm and data processing.
In this project I completed an A-mode and B-mode program used in ultrasound imaging. Through out the project I utilized C++ algorithms such as linked-lists. The A-Modeprogram is used to process the data import anf outputs a graph. The B-mode processes the data and output an ultrasound image.
From the A-mode program the ultrasound dataset is processed and displayed as a graph. The graph displays the final results of the echo data calculation preformed by the program.
The B-mode program uses the scanline data calculated from the A-mode program to output the final ultrasound image. The B-mode program focuses on the utilization of linked list operation to connect different classes in the program to output the final image.