Research Article

Investigations of CNN for Medical Image Analysis for Illness Prediction

Algorithm 2

A pseudocode to find max sized ellipse in the Cartesian plane.
Boolean RaiseAlarm:
Array EA (Number of Elliptical Regions)
For All Collected Elliptical Regions in E
EA[i] = findArea(E[i])
Next
Sort the elements of EA in descending order
For Areas of Elliptical Regions in EA
 If EA[i]>=thresholdArea Then
  RaiseAlarm = 1
 Else
  RaiseAlarm = 0
 End If
Next