Research Article

Real-Time Surveillance Using Deep Learning

Algorithm 1

Intruder detection algorithm.
INPUT Image
OUTPUT Intruder Detected (Yes/No)
(1)procedure INTRUDER
(2)  for y = 1 to imagesndo
(3)   Predict candidate objects in yn ⟶ [F, iND, , ]
(4)   if F == true &&  = = true && ! = true then
(5)    iNDxy = true, highlight area(s) in yn
(6)    interrupt for yn to main system
(7)   end if
(8)   if == true then
(9)    Generate alert and keep-track of location in yn
(10)   end if
(11)  end for
(12)end procedure