I want some one to do this two part by following the steps on the pictures .
homework_5.pdf

Unformatted Attachment Preview

Part A
Download the simple_banking source file in this module (Module 5 sample codes); and open it in
your IDE (Visual Studio, Xcode, GCC, …).
Add three at leas additional functions (services/options you have available or imagine when you
use the ATM machine or a bank with a cashier).
Part B
In many image processing applications, the scientist has to first perform image segmentation. For
circular object in an image, sometimes one has to define the border, given a few known points.
Finding the center and the radius become possible is three points of the “circle” are known. This
is the case of planet observation or iris recognition. In this project we will start with three known
points of a circle, then we compute it center and radius using a number of equations and
functions.
Function call in your project may be similar to this:
Knowing three points defined by there coordinates, (x1, y1), (x2, y2), and (x3, y3), the
coordinates of the center points are can be computed following the expression below:
Once the center point is known, you can compute the radius.
To test your code you may enter the points (-1, 0), (3, 0), and (1, -2).
Your program should return/print for center: (1, 0) and radius = 2.
Submit two files:
a cpp file for the source you wrote
a pdf file of the source you wrote; color in blue or red the five functions you added (this will help
me in the grading process)

Purchase answer to see full
attachment