Home
last modified time | relevance | path

Searched refs:level_width (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
54 level_width = (int)(options_.img_width*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.cu856 Ncv32u level_width = static_cast<Ncv32u>(ceilf(kSourceWidth * scale)); in NCVBroxOpticalFlow() local
859 Ncv32u level_width_aligned = alignUp(level_width, kStrideAlignmentFloat); in NCVBroxOpticalFlow()
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()
896 pyr.w.push_back(level_width); in NCVBroxOpticalFlow()
901 prev_level_width = level_width; in NCVBroxOpticalFlow()