Teknomo–Fernandez algorithm

The Teknomo–Fernandez algorithm (TF algorithm), is an efficient algorithm for generating the background image of a given video sequence.

The TF algorithm produces the background image from a video of a street with many pedestrians crossing.

By assuming that the background image is shown in the majority of the video, the algorithm is able to generate a good background image of a video in -time using only a small number of binary operations and Boolean bit operations, which require a small amount of memory and has built-in operators found in many programming languages such as C, C++, and Java.[1][2][3]

History edit

 
The TF algorithm generates the colored background image and uses it for background subtraction.

People tracking from videos usually involves some form of background subtraction to segment foreground from background. Once foreground images are extracted, then desired algorithms (such as those for motion tracking, object tracking, and facial recognition) may be executed using these images.[1][3]

However, background subtraction requires that the background image is already available and unfortunately, this is not always the case. Traditionally, the background image is searched for manually or automatically from the video images when there are no objects. More recently, automatic background generation through object detection, medial filtering, medoid filtering, approximated median filtering, linear predictive filter, non-parametric model, Kalman filter, and adaptive smoothening have been suggested; however, most of these methods have high computational complexity and are resource-intensive.[1][4]

The Teknomo–Fernandez algorithm is also an automatic background generation algorithm. Its advantage, however, is its computational speed of only  -time, depending on the resolution   of an image and its accuracy gained within a manageable number of frames. Only at least three frames from a video is needed to produce the background image assuming that for every pixel position, the background occurs in the majority of the videos. Furthermore, it can be performed for both grayscale and colored videos.[1]

Assumptions edit

  • The camera is stationary.
  • The light of the environment changes only slowly relative to the motions of the people in the scene.
  • The number of people does not occupy the scene for the most of the time at the same place.

Generally, however, the algorithm will certainly work whenever the following single important assumption holds:

For each pixel position, the majority of the pixel values in the entire video contain the pixel value of the actual background image (at that position).[1]

As long as each part of the background is shown in the majority of the video, the entire background image needs not to appear in any of its frames. The algorithm is expected to work accurately.[1]

Background image generation edit

Equations edit

  1. For three frames of image sequence  ,  , and  , the background image   is obtained using
          [1]
  2. The Boolean mode function   of the table occurs when the number of 1 entries is larger than half of the number of images such that[1]
          
  3. For three images, the background image   can be taken as the value
  [1]

Background generation algorithm edit

At the first level, three frames are selected at random from the image sequence to produce a background image by combining them using the first equation. This yields a better background image at the second level. The procedure is repeated until desired level  .[1]

Theoretical accuracy edit

At level  , the probability   that the modal bit predicted is the actual modal bit is represented by the equation  . The table below gives the computed probability values across several levels using some specific initial probabilities. It can be observed that even if the modal bit at the considered position is at a low 60% of the frames, the probability of accurate modal bit determination is already more than 99% at 6 levels.[1]

 
This table gives the computed probability values across several levels using some specific initial probabilities. It can be observed that even if the modal bit at the considered position is at a low 60% of the frames, the probability of accurate modal bit determination is already more than 99% at six levels.

Space complexity edit

The space requirement of the Teknomo–Fernandez algorithm is given by the function  , depending on the resolution   of the image, the number   of frames in the video, and the desired number   of levels. However, the fact that   will probably not exceed 6 reduces the space complexity to  .[1]

Time complexity edit

The entire algorithm runs in  -time, only depending on the resolution of the image. Computing the modal bit for each bit can be done in  -time while the computation of the resulting image from the three given images can be done in  -time. The number of the images to be processed in   levels is  . However, since  , then this is actually  , thus the algorithm runs in  .[1]

Variants edit

A variant of the Teknomo–Fernandez algorithm that incorporates the Monte-Carlo method named CRF has been developed. Two different configurations of CRF were implemented: CRF9,2 and CRF81,1. Experiments on some colored video sequences showed that the CRF configurations outperform the TF algorithm in terms of accuracy. However, the TF algorithm remains more efficient in terms of processing time.[5]

Applications edit

References edit

  1. ^ a b c d e f g h i j k l m Teknomo, Kardi; Fernandez, Proceso (2015). "Background Image Generation Using Boolean Operations". arXiv:1510.00889 [cs.CV].
  2. ^ Abu, Patricia Angela; Fernandez, Proceso (2014). "Performance Comparison of the Teknomo-Fernandez Algorithm on the RGB and HSV Colour Spaces". 2014 International Conference on Humanoid, Nanotechnology, Information Technology, Communication and Control, Environment and Management (HNICEM). pp. 1–6. doi:10.1109/HNICEM.2014.7016262. ISBN 978-1-4799-4020-2. S2CID 15493318.
  3. ^ a b Abu, Patricia Angela (March 2015). Improving the Teknomo–Fernandez Background Image Modeling Algorithm for Foreground Segmentation (Ph.D). Ateneo de Manila University.
  4. ^ Abu, Patricia Angela; Fernandez, Proceso (March 2016). Modifying the Teknomo–Fernandez Algorithm for Accurate Real-Time Background Subtraction. Philippine Computing Science Congress.
  5. ^ Abu, Patricia Angela; Chu, Varian Sherwin; Fernandez, Proceso. "A Monte-Carlo-based Algorithm for Background Generation". {{cite journal}}: Cite journal requires |journal= (help)

Further reading edit

  • Chu, Varian Sherwin B. (2013). Background image reconstruction using random frame sampling and logical bit operations (Thesis). Ateneo de Manila University.
  • Abu, Patricia Angela R. (2015). Improving the Teknomo-Fernandez Background Image Modeling Algorithm for Foreground Segmentation (Thesis). Ateneo de Manila University.

External links edit