OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:varThreshold
(Results
1 - 10
of
10
) sorted by null
/external/opencv3/modules/cudabgsegm/src/
mog2.cpp
84
MOG2Impl(int history, double
varThreshold
, bool detectShadows);
102
void setVarThreshold(double
varThreshold
) { varThreshold_ = (float)
varThreshold
; }
156
MOG2Impl::MOG2Impl(int history, double
varThreshold
, bool detectShadows) :
160
varThreshold_ =
varThreshold
> 0 ? (float)
varThreshold
: defaultVarThreshold;
248
Ptr<cuda::BackgroundSubtractorMOG2> cv::cuda::createBackgroundSubtractorMOG2(int history, double
varThreshold
, bool detectShadows)
250
return makePtr<MOG2Impl>(history,
varThreshold
, detectShadows);
mog.cpp
59
int nmixtures, float
varThreshold
, float learningRate, float backgroundRatio, float noiseSigma,
/external/opencv3/modules/java/src/
video+BackgroundSubtractorMOG2.java
31
// C++: void setVarThreshold(double
varThreshold
)
34
//javadoc: BackgroundSubtractorMOG2::setVarThreshold(
varThreshold
)
35
public void setVarThreshold(double
varThreshold
)
38
setVarThreshold_0(nativeObj,
varThreshold
);
362
// C++: void setVarThreshold(double
varThreshold
)
363
private static native void setVarThreshold_0(long nativeObj, double
varThreshold
);
video+Video.java
191
// C++: Ptr_BackgroundSubtractorMOG2 createBackgroundSubtractorMOG2(int history = 500, double
varThreshold
= 16, bool detectShadows = true)
194
//javadoc: createBackgroundSubtractorMOG2(history,
varThreshold
, detectShadows)
195
public static BackgroundSubtractorMOG2 createBackgroundSubtractorMOG2(int history, double
varThreshold
, boolean detectShadows)
198
BackgroundSubtractorMOG2 retVal = new BackgroundSubtractorMOG2(createBackgroundSubtractorMOG2_0(history,
varThreshold
, detectShadows));
278
// C++: Ptr_BackgroundSubtractorMOG2 createBackgroundSubtractorMOG2(int history = 500, double
varThreshold
= 16, bool detectShadows = true)
279
private static native long createBackgroundSubtractorMOG2_0(int history, double
varThreshold
, boolean detectShadows);
video.cpp
562
// Ptr_BackgroundSubtractorMOG2 createBackgroundSubtractorMOG2(int history = 500, double
varThreshold
= 16, bool detectShadows = true)
568
(JNIEnv* env, jclass , jint history, jdouble
varThreshold
, jboolean detectShadows)
574
Ptr_BackgroundSubtractorMOG2 _retval_ = cv::createBackgroundSubtractorMOG2( (int)history, (double)
varThreshold
, (bool)detectShadows );
[
all
...]
/external/opencv3/modules/video/include/opencv2/video/
background_segm.hpp
128
CV_WRAP virtual void setVarThreshold(double
varThreshold
) = 0;
203
@param
varThreshold
Threshold on the squared Mahalanobis distance between the pixel and the model
210
createBackgroundSubtractorMOG2(int history=500, double
varThreshold
=16,
/external/opencv3/modules/cudabgsegm/src/cuda/
mog.cu
120
const int nmixtures, const float
varThreshold
, const float backgroundRatio)
143
if (sqr(diff) <
varThreshold
* sum(var))
170
int nmixtures, float
varThreshold
, float backgroundRatio, cudaStream_t stream)
179
nmixtures,
varThreshold
, backgroundRatio);
193
const int nmixtures, const float
varThreshold
, const float backgroundRatio, const float learningRate, const float minVar)
225
if (sqr(diff) <
varThreshold
* sum(var))
322
int nmixtures, float
varThreshold
, float backgroundRatio, float learningRate, float minVar,
332
nmixtures,
varThreshold
, backgroundRatio, learningRate, minVar);
343
void mog_gpu(PtrStepSzb frame, int cn, PtrStepSzb fgmask, PtrStepSzf weight, PtrStepSzf sortKey, PtrStepSzb mean, PtrStepSzb var, int nmixtures, float
varThreshold
, float learningRate, float backgroundRatio, float noiseSigma, cudaStream_t stream)
345
typedef void (*withoutLearning_t)(PtrStepSzb frame, PtrStepSzb fgmask, PtrStepSzf weight, PtrStepSzb mean, PtrStepSzb var, int nmixtures, float
varThreshold
, float backgroundRatio, cudaStream_t stream)
[
all
...]
/external/opencv3/modules/cudabgsegm/include/opencv2/
cudabgsegm.hpp
140
@param
varThreshold
Threshold on the squared Mahalanobis distance between the pixel and the model
147
createBackgroundSubtractorMOG2(int history = 500, double
varThreshold
= 16,
/external/opencv3/modules/video/src/
bgfg_gaussmix2.cpp
132
varThreshold
= defaultVarThreshold2;
157
varThreshold
= (_varThreshold>0)? _varThreshold : defaultVarThreshold2;
242
virtual double getVarThreshold() const { return
varThreshold
; }
243
virtual void setVarThreshold(double _varThreshold) {
varThreshold
= _varThreshold; }
285
<< "
varThreshold
" <<
varThreshold
302
varThreshold
= (double)fn["
varThreshold
"];
336
double
varThreshold
;
340
// and that is
varThreshold
=4*4=16; Corresponds to Tb in the paper
[
all
...]
/cts/apps/CtsVerifier/libs/
opencv3-android.jar
Completed in 82 milliseconds