Add OpenCV source code
[platform/upstream/opencv.git] / modules / video / src / video_init.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                          License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
14 // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
15 // Third party copyrights are property of their respective owners.
16 //
17 // Redistribution and use in source and binary forms, with or without modification,
18 // are permitted provided that the following conditions are met:
19 //
20 //   * Redistribution's of source code must retain the above copyright notice,
21 //     this list of conditions and the following disclaimer.
22 //
23 //   * Redistribution's in binary form must reproduce the above copyright notice,
24 //     this list of conditions and the following disclaimer in the documentation
25 //     and/or other materials provided with the distribution.
26 //
27 //   * The name of the copyright holders may not be used to endorse or promote products
28 //     derived from this software without specific prior written permission.
29 //
30 // This software is provided by the copyright holders and contributors "as is" and
31 // any express or implied warranties, including, but not limited to, the implied
32 // warranties of merchantability and fitness for a particular purpose are disclaimed.
33 // In no event shall the Intel Corporation or contributors be liable for any direct,
34 // indirect, incidental, special, exemplary, or consequential damages
35 // (including, but not limited to, procurement of substitute goods or services;
36 // loss of use, data, or profits; or business interruption) however caused
37 // and on any theory of liability, whether in contract, strict liability,
38 // or tort (including negligence or otherwise) arising in any way out of
39 // the use of this software, even if advised of the possibility of such damage.
40 //
41 //M*/
42
43 #include "precomp.hpp"
44 #include "opencv2/video/video.hpp"
45
46 namespace cv
47 {
48
49 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
50
51 CV_INIT_ALGORITHM(BackgroundSubtractorMOG, "BackgroundSubtractor.MOG",
52     obj.info()->addParam(obj, "history", obj.history);
53     obj.info()->addParam(obj, "nmixtures", obj.nmixtures);
54     obj.info()->addParam(obj, "backgroundRatio", obj.backgroundRatio);
55     obj.info()->addParam(obj, "noiseSigma", obj.noiseSigma))
56
57 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
58
59 CV_INIT_ALGORITHM(BackgroundSubtractorMOG2, "BackgroundSubtractor.MOG2",
60     obj.info()->addParam(obj, "history", obj.history);
61     obj.info()->addParam(obj, "nmixtures", obj.nmixtures);
62     obj.info()->addParam(obj, "varThreshold", obj.varThreshold);
63     obj.info()->addParam(obj, "detectShadows", obj.bShadowDetection);
64     obj.info()->addParam(obj, "backgroundRatio", obj.backgroundRatio);
65     obj.info()->addParam(obj, "varThresholdGen", obj.varThresholdGen);
66     obj.info()->addParam(obj, "fVarInit", obj.fVarInit);
67     obj.info()->addParam(obj, "fVarMin", obj.fVarMin);
68     obj.info()->addParam(obj, "fVarMax", obj.fVarMax);
69     obj.info()->addParam(obj, "fCT", obj.fCT);
70     obj.info()->addParam(obj, "nShadowDetection", obj.nShadowDetection);
71     obj.info()->addParam(obj, "fTau", obj.fTau))
72
73 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
74
75 CV_INIT_ALGORITHM(BackgroundSubtractorGMG, "BackgroundSubtractor.GMG",
76                   obj.info()->addParam(obj, "maxFeatures", obj.maxFeatures,false,0,0,
77                                        "Maximum number of features to store in histogram. Harsh enforcement of sparsity constraint.");
78                   obj.info()->addParam(obj, "learningRate", obj.learningRate,false,0,0,
79                                        "Adaptation rate of histogram. Close to 1, slow adaptation. Close to 0, fast adaptation, features forgotten quickly.");
80                   obj.info()->addParam(obj, "initializationFrames", obj.numInitializationFrames,false,0,0,
81                                        "Number of frames to use to initialize histograms of pixels.");
82                   obj.info()->addParam(obj, "quantizationLevels", obj.quantizationLevels,false,0,0,
83                                        "Number of discrete colors to be used in histograms. Up-front quantization.");
84                   obj.info()->addParam(obj, "backgroundPrior", obj.backgroundPrior,false,0,0,
85                                        "Prior probability that each individual pixel is a background pixel.");
86                   obj.info()->addParam(obj, "smoothingRadius", obj.smoothingRadius,false,0,0,
87                                        "Radius of smoothing kernel to filter noise from FG mask image.");
88                   obj.info()->addParam(obj, "decisionThreshold", obj.decisionThreshold,false,0,0,
89                                        "Threshold for FG decision rule. Pixel is FG if posterior probability exceeds threshold.");
90                   obj.info()->addParam(obj, "updateBackgroundModel", obj.updateBackgroundModel,false,0,0,
91                                        "Perform background model update."))
92
93 bool initModule_video(void)
94 {
95     bool all = true;
96     all &= !BackgroundSubtractorMOG_info_auto.name().empty();
97     all &= !BackgroundSubtractorMOG2_info_auto.name().empty();
98     all &= !BackgroundSubtractorGMG_info_auto.name().empty();
99
100     return all;
101 }
102
103 }