/external/opencv3/modules/cudabgsegm/src/ |
D | mog.cpp | 108 Size frameSize_; member in __anon66be43d20111::MOGImpl 119 frameSize_(0, 0), frameType_(0), nframes_(0) in MOGImpl() 145 …if (nframes_ == 0 || learningRate >= 1.0 || frame.size() != frameSize_ || work_ch != mean_.channel… in apply() 148 _fgmask.create(frameSize_, CV_8UC1); in apply() 169 _backgroundImage.create(frameSize_, frameType_); in getBackgroundImage() 179 frameSize_ = frameSize; in initialize() 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 | 144 Size frameSize_; member in __anon3eb1d9240111::MOG2Impl 157 frameSize_(0, 0), frameType_(0), nframes_(0) in MOG2Impl() 188 …if (nframes_ == 0 || learningRate >= 1.0 || frame.size() != frameSize_ || work_ch != mean_.channel… in apply() 191 _fgmask.create(frameSize_, CV_8UC1); in apply() 213 _backgroundImage.create(frameSize_, frameType_); in getBackgroundImage() 225 frameSize_ = frameSize; in initialize() 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() 241 bgmodelUsedModes_.create(frameSize_, CV_8UC1); in initialize()
|
/external/opencv3/modules/cudalegacy/src/ |
D | gmg.cpp | 137 Size frameSize_; member in __anon6738254a0111::GMGImpl 195 if (frame.size() != frameSize_) in apply() 209 _fgmask.create(frameSize_, CV_8UC1); in apply() 252 frameSize_ = frameSize; in initialize() 256 nfeatures_.create(frameSize_, CV_32SC1); in initialize() 257 colors_.create(maxFeatures_ * frameSize_.height, frameSize_.width, CV_32SC1); in initialize() 258 weights_.create(maxFeatures_ * frameSize_.height, frameSize_.width, CV_32FC1); in initialize() 267 loadConstants(frameSize_.width, frameSize_.height, minVal_, maxVal_, in initialize()
|
D | fgd.cpp | 592 Size frameSize_; member in __anon0c08ab400811::FGDImpl 619 FGDImpl::FGDImpl(const FGDParams& params) : params_(params), frameSize_(0, 0) in FGDImpl() 634 if (curFrame.size() != frameSize_) in apply() 698 frameSize_ = firstFrame.size(); in initialize()
|
/external/opencv3/modules/videostab/src/ |
D | stabilizer.cpp | 71 frameSize_ = Size(0, 0); in reset() 192 … stabilizationMotion = ensureInclusionConstraint(stabilizationMotion, frameSize_, trimRatio_); in stabilizeFrame() 209 stabilizationMotion(Rect(0,0,3,2)), frameSize_, INTER_LINEAR, borderMode_); in stabilizeFrame() 213 stabilizationMotion, frameSize_, INTER_LINEAR, borderMode_); in stabilizeFrame() 220 stabilizationMotion(Rect(0,0,3,2)), frameSize_, INTER_NEAREST); in stabilizeFrame() 224 stabilizationMotion, frameSize_, INTER_NEAREST); in stabilizeFrame() 268 frameSize_ = firstFrame.size(); in setUp() 269 frameMask_.create(frameSize_, CV_8U); in setUp() 409 frameSize_ = frame.size(); in runPrePassIfNecessary() 410 frameMask_.create(frameSize_, CV_8U); in runPrePassIfNecessary() [all …]
|
D | motion_stabilizing.cpp | 151 double w = frameSize_.width, h = frameSize_.height; in stabilize()
|
/external/opencv3/modules/cudacodec/src/ |
D | video_writer.cpp | 129 Size frameSize_; member in __anonefa8258b0111::VideoWriterImpl 150 frameSize_(frameSize), in VideoWriterImpl() 168 frameSize_(frameSize), in VideoWriterImpl() 207 int inputSize[] = { frameSize_.width, frameSize_.height }; in initEncoder() 213 int aspectRatio[] = { frameSize_.width, frameSize_.height, ASPECT_RATIO_DAR }; in initEncoder() 444 … videoFrame_.create(frameSize_.height, (frameSize_.width * bpp[surfaceFormat_]) / 8, CV_8UC1); in initGpuMemory() 446 … videoFrame_.create((frameSize_.height * bpp[surfaceFormat_]) / 8, frameSize_.width, CV_8UC1); in initGpuMemory() 616 CV_Assert( frame.size() == frameSize_ ); in write() 626 efparams.Width = frameSize_.width; in write() 627 efparams.Height = frameSize_.height; in write() [all …]
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
D | motion_stabilizing.hpp | 125 void setFrameSize(Size val) { frameSize_ = val; } in setFrameSize() 126 Size frameSize() const { return frameSize_; } in frameSize() 149 Size frameSize_; member in cv::videostab::LpMotionStabilizer
|
D | stabilizer.hpp | 121 Size frameSize_; member in cv::videostab::StabilizerBase
|