Home
last modified time | relevance | path

Searched refs:frameSize_ (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/cudabgsegm/src/
Dmog.cpp108 Size frameSize_; member in __anonc44768770111::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()
Dmog2.cpp144 Size frameSize_; member in __anon4d5f92690111::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/
Dgmg.cpp137 Size frameSize_; member in __anonc4c149ef0111::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()
Dfgd.cpp592 Size frameSize_; member in __anon6991cfe50811::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/
Dstabilizer.cpp71 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 …]
Dmotion_stabilizing.cpp151 double w = frameSize_.width, h = frameSize_.height; in stabilize()
/external/opencv3/modules/cudacodec/src/
Dvideo_writer.cpp129 Size frameSize_; member in __anon5a4a1f300111::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/
Dmotion_stabilizing.hpp125 void setFrameSize(Size val) { frameSize_ = val; } in setFrameSize()
126 Size frameSize() const { return frameSize_; } in frameSize()
149 Size frameSize_; member in cv::videostab::LpMotionStabilizer
Dstabilizer.hpp121 Size frameSize_; member in cv::videostab::StabilizerBase