Searched refs:nmixtures_ (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudabgsegm/src/ |
D | mog.cpp | 88 int getNMixtures() const { return nmixtures_; } in getNMixtures() 89 void setNMixtures(int nmix) { nmixtures_ = nmix; } in setNMixtures() 102 int nmixtures_; member in __anon66be43d20111::MOGImpl 122 nmixtures_ = std::min(nmixtures > 0 ? nmixtures : defaultNMixtures, 8); in MOGImpl() 155 mog_gpu(frame, ch, fgmask, weight_, sortKey_, mean_, var_, nmixtures_, in apply() 172 …Image_gpu(backgroundImage.channels(), weight_, mean_, backgroundImage, nmixtures_, backgroundRatio… in getBackgroundImage() 190 weight_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1); in initialize() 191 sortKey_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1); in initialize() 192 mean_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC(work_ch)); in initialize() 193 var_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC(work_ch)); in initialize()
|
D | mog2.cpp | 95 int getNMixtures() const { return nmixtures_; } in getNMixtures() 96 void setNMixtures(int nmixtures) { nmixtures_ = nmixtures; } in setNMixtures() 132 int nmixtures_; member in __anon3eb1d9240111::MOG2Impl 163 nmixtures_ = defaultNMixtures; in MOG2Impl() 236 weight_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1); in initialize() 237 variance_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1); in initialize() 238 mean_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC(work_ch)); in initialize() 244 …loadConstants(nmixtures_, varThreshold_, backgroundRatio_, varThresholdGen_, varInit_, varMin_, va… in initialize()
|