OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Ncv32s
(Results
1 - 9
of
9
) sorted by null
/external/opencv3/modules/cudalegacy/test/
TestHypothesesFilter.cpp
78
return std::abs((
Ncv32s
)r1.x - (
Ncv32s
)r2.x) <= delta &&
79
std::abs((
Ncv32s
)r1.y - (
Ncv32s
)r2.y) <= delta &&
80
std::abs((
Ncv32s
)r1.x + (
Ncv32s
)r1.width - (
Ncv32s
)r2.x - (
Ncv32s
)r2.width) <= delta &&
81
std::abs((
Ncv32s
)r1.y + (
Ncv32s
)r1.height - (Ncv32s)r2.y - (Ncv32s)r2.height) <= delta
[
all
...]
TestRectStdDev.cpp
83
Ncv32s
_normWidth = (
Ncv32s
)this->width - this->rect.x - this->rect.width + 1;
84
Ncv32s
_normHeight = (
Ncv32s
)this->height - this->rect.y - this->rect.height + 1;
TestResize.cpp
84
Ncv32s
smallWidth = this->width / this->scaleFactor;
85
Ncv32s
smallHeight = this->height / this->scaleFactor;
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
NPP_staging.hpp
186
Ncv32s
nKernelSize,
187
Ncv32s
nAnchor,
220
Ncv32s
nKernelSize,
221
Ncv32s
nAnchor,
360
NCVStatus nppiStDecimate_32s_C1R(
Ncv32s
*d_src, Ncv32u srcStep,
361
Ncv32s
*d_dst, Ncv32u dstStep,
433
NCVStatus nppiStDecimate_32s_C1R_host(
Ncv32s
*h_src, Ncv32u srcStep,
434
Ncv32s
*h_dst, Ncv32u dstStep,
546
NCVStatus nppiStTranspose_32s_C1R(
Ncv32s
*d_src, Ncv32u srcStride,
547
Ncv32s
*d_dst, Ncv32u dstStride, NcvSize32u srcRoi)
[
all
...]
NCV.hpp
127
typedef int
Ncv32s
;
150
Ncv32s
x; ///< x-coordinate of upper left corner.
151
Ncv32s
y; ///< y-coordinate of upper left corner.
152
Ncv32s
width; ///< Rectangle width.
153
Ncv32s
height; ///< Rectangle height.
155
__host__ __device__ NcvRect32s(
Ncv32s
x_,
Ncv32s
y_,
Ncv32s
width_,
Ncv32s
height_)
174
Ncv32s
width; ///< Rectangle width
[
all
...]
/external/opencv3/modules/cudalegacy/src/cuda/
NCVPyramid.cu
60
out.x = ((
Ncv32s
)p00.x + p01.x + p10.x + p11.x + 2) / 4;
84
out.x = ((
Ncv32s
)p00.x + p01.x + p10.x + p11.x + 2) / 4;
85
out.y = ((
Ncv32s
)p00.y + p01.y + p10.y + p11.y + 2) / 4;
86
out.z = ((
Ncv32s
)p00.z + p01.z + p10.z + p11.z + 2) / 4;
114
out.x = ((
Ncv32s
)p00.x + p01.x + p10.x + p11.x + 2) / 4;
115
out.y = ((
Ncv32s
)p00.y + p01.y + p10.y + p11.y + 2) / 4;
116
out.z = ((
Ncv32s
)p00.z + p01.z + p10.z + p11.z + 2) / 4;
117
out.w = ((
Ncv32s
)p00.w + p01.w + p10.w + p11.w + 2) / 4;
NPP_staging.cu
[
all
...]
NCVPixelOperations.hpp
56
template<> inline __host__ __device__
Ncv32s
_pixMaxVal<
Ncv32s
>() {return INT_MAX;}
66
template<> inline __host__ __device__
Ncv32s
_pixMinVal<
Ncv32s
>() {return INT_MIN;}
NCVHaarObjectDetection.cu
512
Ncv32s
numRootNodesInStage = curStage.getNumClassifierRootNodes();
[
all
...]
Completed in 884 milliseconds