Lines Matching refs:level_height
48 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()
71 step.Lsmooth = Mat::zeros(level_height, level_width, CV_32F); in Allocate_Memory_Evolution()