OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstRoi
(Results
1 - 6
of
6
) sorted by null
/external/opencv3/modules/cudalegacy/src/cuda/
NCVPyramid.cu
188
NcvSize32u
dstRoi
)
193
if (i <
dstRoi
.height && j <
dstRoi
.width)
257
NcvSize32u
dstRoi
)
262
if (i <
dstRoi
.height && j <
dstRoi
.width)
264
Ncv32f ptTopX = 1.0f * (szTopRoi.width - 1) * j / (
dstRoi
.width - 1);
265
Ncv32f ptTopY = 1.0f * (szTopRoi.height - 1) * i / (
dstRoi
.height - 1);
NPP_staging.cu
733
NcvSize32u
dstRoi
, Ncv32u scale)
738
if (curX >=
dstRoi
.width || curY >=
dstRoi
.height)
761
NcvSize32u
dstRoi
;
762
dstRoi
.width = srcRoi.width / scale;
763
dstRoi
.height = srcRoi.height / scale;
765
dim3 grid((
dstRoi
.width + NUM_DOWNSAMPLE_NEAREST_THREADS_X - 1) / NUM_DOWNSAMPLE_NEAREST_THREADS_X,
766
(
dstRoi
.height + NUM_DOWNSAMPLE_NEAREST_THREADS_Y - 1) / NUM_DOWNSAMPLE_NEAREST_THREADS_Y);
774
(d_src, srcStep, d_dst, dstStep,
dstRoi
, scale);
800
(d_src, srcStep, d_dst, dstStep,
dstRoi
, scale)
[
all
...]
/external/opencv3/modules/imgproc/src/
pyramids.cpp
[
all
...]
hough.cpp
104
IppPointPolar
dstRoi
[2] = {{(Ipp32f) -(width + height), (Ipp32f) min_theta},{(Ipp32f) (width + height), (Ipp32f) max_theta}};
112
if (ok >= 0) ok = ippiHoughLine_Region_8u32f_C1R(image, step, srcSize, (IppPointPolar*) &lines[0],
dstRoi
, ipp_linesMax, &linesCount, delta, threshold, buffer);
[
all
...]
imgwarp.cpp
[
all
...]
/external/opencv3/modules/cudawarping/src/
warp.cpp
143
int dstStep, NppiRect
dstRoi
, const double coeffs[][3],
165
NppiRect
dstroi
;
166
dstroi
.x = 0;
167
dstroi
.y = 0;
168
dstroi
.height = dst.rows;
169
dstroi
.width = dst.cols;
174
dst.ptr<npp_type>(), static_cast<int>(dst.step),
dstroi
,
493
NppiRect
dstroi
;
494
dstroi
.x =
dstroi
.y = 0
[
all
...]
Completed in 1474 milliseconds