Research Article

An Efficient Face Detection and Recognition System Using RVJA and SCNN

Algorithm 1

The pseudocode of the VJA algorithm.
Input: Input image
Output: segmented face images
Begin
Initialize the number of images
Set
While
  Compute features
  Compute integral image
    //integral image
  Give input to the cascade classifier
  for each shifts do
   for each stages do
    for number of filters at each stage do
     Collects the filter outputs
    End for
    if the stage predicts negative then
     Discard the input
    End if
   End for
   if the input passed all the stages then
    Receive the input as face
   End if
  End for
Set
End while
Return segmented
End