Home
last modified time | relevance | path

Searched refs:level_height (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/features2d/src/kaze/
DAKAZEFeatures.cpp48 int level_height = 0, level_width = 0; in Allocate_Memory_Evolution() local
53 level_height = (int)(options_.img_height*rfactor); in Allocate_Memory_Evolution()
57 if ((level_width < 80 || level_height < 40) && i != 0) { in Allocate_Memory_Evolution()
64 step.Lx = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
65 step.Ly = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
66 step.Lxx = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
67 step.Lxy = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
68 step.Lyy = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
69 step.Lt = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
70 step.Ldet = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()
[all …]
/external/opencv3/modules/cudalegacy/src/cuda/
DNCVBroxOpticalFlow.cu857 Ncv32u level_height = static_cast<Ncv32u>(ceilf(kSourceHeight * scale)); in NCVBroxOpticalFlow() local
861 …Ncv32u buffer_size = alignUp(level_width, kStrideAlignmentFloat) * level_height; // buffer size in… in NCVBroxOpticalFlow()
876 NcvSize32u dstSize (level_width, level_height); in NCVBroxOpticalFlow()
878 NcvRect32u dstROI (0, 0, level_width, level_height); in NCVBroxOpticalFlow()
897 pyr.h.push_back(level_height); in NCVBroxOpticalFlow()
902 prev_level_height = level_height; in NCVBroxOpticalFlow()