Midpoint Ellipse Algorithm:This is an incremental method for scan converting an ellipse that is centered at the origin in standard position i.e., with the major and minor axis parallel to coordinate system axis. It is very similar to the midpoint circle algorithm. Because of the four-way symmetry property we need to consider the entire elliptical curve in the first quadrant. Let's first rewrite the ellipse equation and define the function f that can be used to decide if the midpoint between two candidate pixels is inside or outside the ellipse: Now divide the elliptical curve from (0, b) to (a, 0) into two parts at point Q where the slope of the curve is -1. Slope of the curve is defined by the f(x, y) = 0 iswhere fx & fy are partial derivatives of f(x, y) with respect to x & y. We have fx = 2b2 x, fy=2a2 y & Hence we can monitor the slope value during the scan conversion process to detect Q. Our starting point is (0, b) Suppose that the coordinates of the last scan converted pixel upon entering step i are (xi,yi). We are to select either T (xi+1),yi) or S (xi+1,yi-1) to be the next pixel. The midpoint of T & S is used to define the following decision parameter. pi = f(xi+1),yi-) If pi<0, the midpoint is inside the curve and we choose pixel T. If pi>0, the midpoint is outside or on the curve and we choose pixel S. Decision parameter for the next step is: pi+1=f(xi+1+1,yi+1-) Since xi+1=xi+1,we have If T is chosen pixel (pi<0), we have yi+1=yi. If S is chosen pixel (pi>0) we have yi+1=yi-1. Thus we can express pi+1in terms of pi and (xi+1,yi+1): pi+1= pi+2b2 xi+1+b2 if pi<0 = pi+2b2 xi+1+b2-2a2 yi+1 if pi>0 The initial value for the recursive expression can be obtained by the evaluating the original definition of pi with (0, b): p1 = (b2+a2 (b-)2-a2 b2 Suppose the pixel (xj yj) has just been scan converted upon entering step j. The next pixel is either U (xj ,yj-1) or V (xj+1,yj-1). The midpoint of the horizontal line connecting U & V is used to define the decision parameter: qj=f(xj+,yj-1) If qj<0, the midpoint is inside the curve and we choose pixel V. If qj≥0, the midpoint is outside the curve and we choose pixel U.Decision parameter for the next step is: qj+1=f(xj+1+,yj+1-1) Since yj+1=yj-1,we have If V is chosen pixel (qj<0), we have xj+1=xj. If U is chosen pixel (pi>0) we have xj+1=xj. Thus we can express qj+1in terms of qj and (xj+1,yj+1 ): The initial value for the recursive expression is computed using the original definition of qj. And the coordinates of (xk yk) of the last pixel choosen for the part 1 of the curve: q1 = f(xk+,yk-1)=b2 (xk+)2-a2 (yk-1)2- a2 b2 Algorithm:int x=0, y=b; [starting point] int fx=0, fy=2a2 b [initial partial derivatives] int p = b2-a2 b+a2/4 while (fx Program to draw an ellipse using Midpoint Ellipse Algorithm:Output: Next TopicBoundary Fill Algorithm |