OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:imageSize_
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/imgproc/src/
generalized_hough.cpp
88
Size
imageSize_
;
158
imageSize_
= imageEdges_.size();
189
imageSize_
= imageEdges_.size();
237
const int gridWidth = (
imageSize_
.width + cellSize - 1) / cellSize;
238
const int gridHeight = (
imageSize_
.height + cellSize - 1) / cellSize;
419
CV_Assert( imageDx_.type() == CV_32FC1 && imageDx_.size() ==
imageSize_
);
420
CV_Assert( imageDy_.type() == imageDx_.type() && imageDy_.size() ==
imageSize_
);
427
hist_.create(cvCeil(
imageSize_
.height * idp) + 2, cvCeil(
imageSize_
.width * idp) + 2, CV_32SC1);
433
for (int y = 0; y <
imageSize_
.height; ++y
[
all
...]
histogram.cpp
461
imageSize_
(imsize),
565
Size
imageSize_
;
[
all
...]
/external/opencv3/modules/cudaimgproc/src/
generalized_hough.cpp
132
Size
imageSize_
;
249
imageSize_
= imageEdges_.size();
280
imageSize_
= imageEdges_.size();
360
const int gridWidth = (
imageSize_
.width + cellSize - 1) / cellSize;
361
const int gridHeight = (
imageSize_
.height + cellSize - 1) / cellSize;
532
ensureSizeIsEnough(cvCeil(
imageSize_
.height * idp) + 2, cvCeil(
imageSize_
.width * idp) + 2, CV_32SC1, hist_);
765
const int histRows = cvCeil(
imageSize_
.height * idp);
766
const int histCols = cvCeil(
imageSize_
.width * idp);
Completed in 216 milliseconds