Skip to content
Snippets Groups Projects
Select Git revision
  • 7201cda8bb44ecc3eafc2ba70f0c243998e786f0
  • master default protected
  • beta
  • dev
  • andrewssobral-patch-1
  • update
  • thomas-fork
  • 2.0
  • v3.2.0
  • v3.1.0
  • v3.0
  • bgslib_py27_ocv3_win64
  • bgslib_java_2.0.0
  • bgslib_console_2.0.0
  • bgslib_matlab_win64_2.0.0
  • bgslib_qtgui_2.0.0
  • 2.0.0
  • bgs_console_2.0.0
  • bgs_matlab_win64_2.0.0
  • bgs_qtgui_2.0.0
  • v1.9.2_x86_mfc_gui
  • v1.9.2_x64_java_gui
  • v1.9.2_x86_java_gui
23 results

fet

  • Clone with SSH
  • Clone with HTTPS
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Name Last commit Last update
    ..
    FG
    GT
    SC
    README.txt
    fet.py
    FET - FOREGROUND EVALUATION TOOL
    
    Implemented in Python 2.7
    
    Available measurements
    ----------------------
    
    TP - True positive:  Total number of true positive pixels.
    FP - False positive: Total number of false positive pixels.
    TN - True negative:  Total number of true negative pixels.
    FN - False negative: Total number of false negative pixels.
    
    Precision: Number of true positive pixels / (number of true positive pixels + number of false positive pixels).
    Recall:    Number of true positive pixels / (number of true positive pixels + number of false negative pixels).
    F-factor:  2 × (precision × recall)/(precision + recall). *** Also known as F1 score, F-score or F-measure.
    
    Description
    -----------
    # TP - # of foreground pixels classified as foreground pixels.
    # FP - # of background pixels classified as foreground pixels.
    # TN - # of background pixels classified as background pixels.
    # FN - # of foreground pixels classified as background pixels.