OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deriv_type
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/video/src/
lkpyramid.hpp
8
typedef short
deriv_type
;
typedef in namespace:cv::detail
lkpyramid.cpp
55
using cv::detail::
deriv_type
;
58
dst.create(rows, cols, CV_MAKETYPE(DataType<
deriv_type
>::depth, cn*2));
66
AutoBuffer<
deriv_type
> _tempBuf(delta*2 + 64);
67
deriv_type
*trow0 = alignPtr(_tempBuf + cn, 16), *trow1 = alignPtr(trow0 + delta, 16);
86
deriv_type
* drow = dst.ptr<
deriv_type
>(y);
124
trow0[x] = (
deriv_type
)t0;
125
trow1[x] = (
deriv_type
)t1;
185
deriv_type
t0 = (
deriv_type
)(trow0[x+cn] - trow0[x-cn])
[
all
...]
Completed in 64 milliseconds