OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frameSize_
(Results
1 - 9
of
9
) sorted by null
/external/opencv3/modules/cudalegacy/src/
gmg.cpp
137
Size
frameSize_
;
195
if (frame.size() !=
frameSize_
)
209
_fgmask.create(
frameSize_
, CV_8UC1);
252
frameSize_
= frameSize;
256
nfeatures_.create(
frameSize_
, CV_32SC1);
257
colors_.create(maxFeatures_ *
frameSize_
.height,
frameSize_
.width, CV_32SC1);
258
weights_.create(maxFeatures_ *
frameSize_
.height,
frameSize_
.width, CV_32FC1);
267
loadConstants(
frameSize_
.width, frameSize_.height, minVal_, maxVal_
[
all
...]
fgd.cpp
592
Size
frameSize_
;
619
FGDImpl::FGDImpl(const FGDParams& params) : params_(params),
frameSize_
(0, 0)
634
if (curFrame.size() !=
frameSize_
)
698
frameSize_
= firstFrame.size();
/external/opencv3/modules/cudabgsegm/src/
mog.cpp
108
Size
frameSize_
;
119
frameSize_
(0, 0), frameType_(0), nframes_(0)
145
if (nframes_ == 0 || learningRate >= 1.0 || frame.size() !=
frameSize_
|| work_ch != mean_.channels())
148
_fgmask.create(
frameSize_
, CV_8UC1);
169
_backgroundImage.create(
frameSize_
, frameType_);
179
frameSize_
= frameSize;
190
weight_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC1);
191
sortKey_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC1);
192
mean_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC(work_ch));
193
var_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC(work_ch))
[
all
...]
mog2.cpp
144
Size
frameSize_
;
157
frameSize_
(0, 0), frameType_(0), nframes_(0)
188
if (nframes_ == 0 || learningRate >= 1.0 || frame.size() !=
frameSize_
|| work_ch != mean_.channels())
191
_fgmask.create(
frameSize_
, CV_8UC1);
213
_backgroundImage.create(
frameSize_
, frameType_);
225
frameSize_
= frameSize;
236
weight_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC1);
237
variance_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC1);
238
mean_.create(frameSize.height * nmixtures_,
frameSize_
.width, CV_32FC(work_ch));
241
bgmodelUsedModes_.create(
frameSize_
, CV_8UC1)
[
all
...]
/external/opencv3/modules/videostab/include/opencv2/videostab/
motion_stabilizing.hpp
125
void setFrameSize(Size val) {
frameSize_
= val; }
126
Size frameSize() const { return
frameSize_
; }
149
Size
frameSize_
;
stabilizer.hpp
121
Size
frameSize_
;
/external/opencv3/modules/videostab/src/
stabilizer.cpp
71
frameSize_
= Size(0, 0);
192
stabilizationMotion = ensureInclusionConstraint(stabilizationMotion,
frameSize_
, trimRatio_);
209
stabilizationMotion(Rect(0,0,3,2)),
frameSize_
, INTER_LINEAR, borderMode_);
213
stabilizationMotion,
frameSize_
, INTER_LINEAR, borderMode_);
220
stabilizationMotion(Rect(0,0,3,2)),
frameSize_
, INTER_NEAREST);
224
stabilizationMotion,
frameSize_
, INTER_NEAREST);
268
frameSize_
= firstFrame.size();
269
frameMask_.create(
frameSize_
, CV_8U);
409
frameSize_
= frame.size();
410
frameMask_.create(
frameSize_
, CV_8U)
[
all
...]
motion_stabilizing.cpp
151
double w =
frameSize_
.width, h =
frameSize_
.height;
/external/opencv3/modules/cudacodec/src/
video_writer.cpp
129
Size
frameSize_
;
150
frameSize_
(frameSize),
168
frameSize_
(frameSize),
207
int inputSize[] = {
frameSize_
.width,
frameSize_
.height };
213
int aspectRatio[] = {
frameSize_
.width,
frameSize_
.height, ASPECT_RATIO_DAR };
444
videoFrame_.create(
frameSize_
.height, (
frameSize_
.width * bpp[surfaceFormat_]) / 8, CV_8UC1);
446
videoFrame_.create((
frameSize_
.height * bpp[surfaceFormat_]) / 8, frameSize_.width, CV_8UC1)
[
all
...]
Completed in 2200 milliseconds