Skip to content

create_bg_estiCreateBgEstiCreateBgEsticreate_bg_estiT_create_bg_estiπŸ”—

Short descriptionπŸ”—

create_bg_estiCreateBgEstiCreateBgEsticreate_bg_estiT_create_bg_esti β€” Generate and initialize a data set for the background estimation.

SignatureπŸ”—

create_bg_esti( image InitializeImage, real Syspar1, real Syspar2, string GainMode, real Gain1, real Gain2, string AdaptMode, real MinDiff, integer StatNum, real ConfidenceC, real TimeC, out bg_estimation BgEstiHandle )void CreateBgEsti( const HObject& InitializeImage, const HTuple& Syspar1, const HTuple& Syspar2, const HTuple& GainMode, const HTuple& Gain1, const HTuple& Gain2, const HTuple& AdaptMode, const HTuple& MinDiff, const HTuple& StatNum, const HTuple& ConfidenceC, const HTuple& TimeC, HTuple* BgEstiHandle )static void HOperatorSet.CreateBgEsti( HObject initializeImage, HTuple syspar1, HTuple syspar2, HTuple gainMode, HTuple gain1, HTuple gain2, HTuple adaptMode, HTuple minDiff, HTuple statNum, HTuple confidenceC, HTuple timeC, out HTuple bgEstiHandle )def create_bg_esti( initialize_image: HObject, syspar_1: float, syspar_2: float, gain_mode: str, gain_1: float, gain_2: float, adapt_mode: str, min_diff: float, stat_num: int, confidence_c: float, time_c: float ) -> HHandle

Herror T_create_bg_esti( const Hobject InitializeImage, const Htuple Syspar1, const Htuple Syspar2, const Htuple GainMode, const Htuple Gain1, const Htuple Gain2, const Htuple AdaptMode, const Htuple MinDiff, const Htuple StatNum, const Htuple ConfidenceC, const Htuple TimeC, Htuple* BgEstiHandle )

void HBgEsti::HBgEsti( const HImage& InitializeImage, double Syspar1, double Syspar2, const HString& GainMode, double Gain1, double Gain2, const HString& AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC )

void HBgEsti::HBgEsti( const HImage& InitializeImage, double Syspar1, double Syspar2, const char* GainMode, double Gain1, double Gain2, const char* AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC )

void HBgEsti::HBgEsti( const HImage& InitializeImage, double Syspar1, double Syspar2, const wchar_t* GainMode, double Gain1, double Gain2, const wchar_t* AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC ) (Windows only)

public HBgEsti( HImage initializeImage, double syspar1, double syspar2, string gainMode, double gain1, double gain2, string adaptMode, double minDiff, int statNum, double confidenceC, double timeC )

HBgEsti HImage::CreateBgEsti( double Syspar1, double Syspar2, const HString& GainMode, double Gain1, double Gain2, const HString& AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC ) const

HBgEsti HImage::CreateBgEsti( double Syspar1, double Syspar2, const char* GainMode, double Gain1, double Gain2, const char* AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC ) const

HBgEsti HImage::CreateBgEsti( double Syspar1, double Syspar2, const wchar_t* GainMode, double Gain1, double Gain2, const wchar_t* AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC ) const (Windows only)

void HBgEsti::CreateBgEsti( const HImage& InitializeImage, double Syspar1, double Syspar2, const HString& GainMode, double Gain1, double Gain2, const HString& AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC )

void HBgEsti::CreateBgEsti( const HImage& InitializeImage, double Syspar1, double Syspar2, const char* GainMode, double Gain1, double Gain2, const char* AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC )

void HBgEsti::CreateBgEsti( const HImage& InitializeImage, double Syspar1, double Syspar2, const wchar_t* GainMode, double Gain1, double Gain2, const wchar_t* AdaptMode, double MinDiff, Hlong StatNum, double ConfidenceC, double TimeC ) (Windows only)

HBgEsti HImage.CreateBgEsti( double syspar1, double syspar2, string gainMode, double gain1, double gain2, string adaptMode, double minDiff, int statNum, double confidenceC, double timeC )

void HBgEsti.CreateBgEsti( HImage initializeImage, double syspar1, double syspar2, string gainMode, double gain1, double gain2, string adaptMode, double minDiff, int statNum, double confidenceC, double timeC )

DescriptionπŸ”—

create_bg_estiCreateBgEsti creates a new data set for the background estimation and initializes it with the appropriate parameters. The estimated background image is part of this data set. The newly created set automatically becomes the current set.

InitializeImageinitializeImageinitialize_image is used as an initial prediction for the background image. For a good prediction an image of the observed scene without moving objects should be passed in InitializeImageinitializeImageinitialize_image. That way the foreground adaptation rate can be held low. If there is no empty scene image available, a homogeneous gray image can be used instead. In that case the adaptation rate for the foreground image must be raised, because initially most of the image will be detected as foreground. The initialization image must to be of type byte or real. Because of processing single-channel images, data sets must be created for every channel. Size and region of InitializeImageinitializeImageinitialize_image determines size and region for all background estimations (run_bg_estiRunBgEsti) that are performed with this data set.

Syspar1syspar1syspar_1 and Syspar2syspar2syspar_2 are the parameters of the Kalman system matrix. The system matrix describes the system of the gray value changes according to Kalman filter theory. The background estimator implements a different system for each pixel.

GainModegainModegain_mode defines whether a fixed Kalman gain should be used for the estimation or whether the gain should adapt itself depending on the difference between estimation and actual value. If GainModegainModegain_mode is set to 'fixed'"fixed", then Gain1gain1gain_1 is used as Kalman gain for pixels predicted as foreground and Gain2gain2gain_2 as gain for pixels predicted as background. Gain1gain1gain_1 should be smaller than Gain2gain2gain_2, because adaptation of the foreground should be slower than adaptation of the background. Both Gain1gain1gain_1 and Gain2gain2gain_2 should be smaller than 1.01.0.

If GainModegainModegain_mode is set to 'frame'"frame", then tables for foreground and background estimation are computed containing Kalman gains for all the 256 possible gray value changes. Gain1gain1gain_1 and Gain2gain2gain_2 then denote the number of frames necessary to adapt the difference between estimated value and actual value. So with a fixed time for adaptation (i.e. number of frames) the needed Kalman gain grows with the gray value difference. Gain1gain1gain_1 should therefore be larger than Gain2gain2gain_2. Different gains for different gray value differences are useful if the background estimator is used for generating an β€˜empty’ scene assuming that there are always moving objects in the observed area. In that case the adaptation time for foreground adaptation (Gain1gain1gain_1) must not be too big. Gain1gain1gain_1 and Gain2gain2gain_2 should be bigger than 1.01.0.

AdaptModeadaptModeadapt_mode denotes, whether the foreground/background decision threshold applied to the gray value difference between estimation and actual value is fixed or whether it adapts itself depending on the gray value deviation of the background pixels.

If AdaptModeadaptModeadapt_mode is set to 'off'"off", the parameter MinDiffminDiffmin_diff denotes a fixed threshold. The parameters StatNumstatNumstat_num, ConfidenceCconfidenceCconfidence_c and TimeCtimeCtime_c are meaningless in this case.

If AdaptModeadaptModeadapt_mode is set to 'on'"on", then MinDiffminDiffmin_diff is interpreted as a base threshold. For each pixel an offset is added to this threshold depending on the statistical evaluation of the pixel value over time. StatNumstatNumstat_num holds the number of data sets (past frames) that are used for computing the gray value variance (FIR-Filter). ConfidenceCconfidenceCconfidence_c is used to determine the confidence interval.

The confidence interval determines the values of the background statistics if background pixels are hidden by a foreground object and thus are detected as foreground. According to the student t-distribution the confidence constant is 4.30 (3.25, 2.82, 2.26) for a confidence interval of 99,8% (99,0%, 98,0%, 95,0%). TimeCtimeCtime_c holds a time constant for the exp-function that raises the threshold in case of a foreground estimation of the pixel. That means, the threshold is raised in regions where movement is detected in the foreground. That way larger changes in illumination are tolerated if the background becomes visible again. The main reason for increasing this tolerance is the impossibility for a prediction of illumination changes while the background is hidden. Therefore no adaptation of the estimated background image is possible.

AttentionπŸ”—

If GainModegainModegain_mode was set to 'frame'"frame", the run-time can be extremely long for large values of Gain1gain1gain_1 or Gain2gain2gain_2, because the values for the gains’ table are determined by a simple binary search.

Execution informationπŸ”—

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

This operator returns a handle. Note that the state of an instance of this handle type may be changed by specific operators even though the handle is used as an input parameter by those operators.

ParametersπŸ”—

InitializeImageinitializeImageinitialize_image (input_object) singlechannelimage β†’ object (byte / real)HObject (byte / real)HImage (byte / real)HObject (byte / real)Hobject (byte / real)

initialization image.

Syspar1syspar1syspar_1 (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

1. system matrix parameter.

Default: 0.70.7
Suggested values: 0.65, 0.7, 0.750.65, 0.7, 0.75
Value range: 0.05 ≀ Syspar1 ≀ 1.0
Recommended increment: 0.05

Syspar2syspar2syspar_2 (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

2. system matrix parameter.

Default: 0.70.7
Suggested values: 0.65, 0.7, 0.750.65, 0.7, 0.75
Value range: 0.05 ≀ Syspar2 ≀ 1.0
Recommended increment: 0.05

GainModegainModegain_mode (input_control) string β†’ (string)HTuple (HString)HTuple (string)strHtuple (char*)

Gain type.

Default: 'fixed'"fixed"
List of values: 'fixed', 'frame'"fixed", "frame"

Gain1gain1gain_1 (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Kalman gain / foreground adaptation time.

Default: 0.0020.002
Suggested values: 10.0, 20.0, 50.0, 0.1, 0.05, 0.01, 0.005, 0.00110.0, 20.0, 50.0, 0.1, 0.05, 0.01, 0.005, 0.001
Restriction: 0.0 <= Gain1

Gain2gain2gain_2 (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Kalman gain / background adaptation time.

Default: 0.020.02
Suggested values: 2.0, 4.0, 8.0, 0.5, 0.1, 0.05, 0.012.0, 4.0, 8.0, 0.5, 0.1, 0.05, 0.01
Restriction: 0.0 <= Gain2

AdaptModeadaptModeadapt_mode (input_control) string β†’ (string)HTuple (HString)HTuple (string)strHtuple (char*)

Threshold adaptation.

Default: 'on'"on"
List of values: 'off', 'on'"off", "on"

MinDiffminDiffmin_diff (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Foreground/background threshold.

Default: 7.07.0
Suggested values: 3.0, 5.0, 7.0, 9.0, 11.03.0, 5.0, 7.0, 9.0, 11.0
Recommended increment: 0.2

StatNumstatNumstat_num (input_control) integer β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Number of statistic data sets.

Default: 1010
Suggested values: 5, 10, 20, 305, 10, 20, 30
Value range: 1 ≀ StatNum
Recommended increment: 5

ConfidenceCconfidenceCconfidence_c (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Confidence constant.

Default: 3.253.25
Suggested values: 4.30, 3.25, 2.82, 2.624.30, 3.25, 2.82, 2.62
Recommended increment: 0.01
Restriction: 0.0 < ConfidenceC

TimeCtimeCtime_c (input_control) real β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Constant for decay time.

Default: 15.015.0
Suggested values: 10.0, 15.0, 20.010.0, 15.0, 20.0
Recommended increment: 5.0
Restriction: 0.0 < TimeC

BgEstiHandlebgEstiHandlebg_esti_handle (output_control) bg_estimation β†’ (handle)HTuple (HHandle)HBgEsti, HTuple (IntPtr)HHandleHtuple (handle)

ID of the BgEsti data set.

ExampleπŸ”—

(HDevelop)

* read Init-Image:
read_image (InitImage, 'xing/init')
* initialize 1. BgEsti-Dataset with
* fixed gains and threshold adaption:
create_bg_esti(InitImage,0.7,0.7,'fixed',0.002,0.02, \
               'on',7.0,10,3.25,15.0,BgEstiHandle1)
* initialize 2. BgEsti-Dataset with
* frame orientated gains and fixed threshold
create_bg_esti(InitImage,0.7,0.7,'frame',30.0,4.0, \
               'off',9.0,10,3.25,15.0,BgEstiHandle2)

ResultπŸ”—

create_bg_estiCreateBgEsti returns 2 (H_MSG_TRUE) if all parameters are correct.

Combinations with other operatorsπŸ”—

Combinations

Possible successors

run_bg_estiRunBgEsti

See also

set_bg_esti_paramsSetBgEstiParams, close_bg_estiCloseBgEsti

ModuleπŸ”—

Foundation