Searched refs:height1 (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | screen_finder_unittest.py | 60 height1, width1 = screen.shape[:2] 62 self.assertEqual(height, height1)
|
/external/opencv3/modules/imgproc/test/ |
D | test_imgwarp_strict.cpp | 890 height1 = std::max(ssize.height - ksize + 1, 0); in remap_generic() local 914 if (isx >= 0 && isx < width1 && isy >= 0 && isy < height1) in remap_generic()
|
/external/opencv/cvaux/src/ |
D | cvepilines.cpp | 1384 double height1,height2; in icvGetQuadsTransform() local 1409 height1 = MAX(tmpHeight1,tmpHeight2); in icvGetQuadsTransform() 1654 warpHeight = MAX(height1,height2); in icvGetQuadsTransform()
|
/external/opencv3/modules/imgproc/src/ |
D | imgwarp.cpp | 3498 unsigned width1 = ssize.width, height1 = ssize.height; in remapNearest() local 3516 if( (unsigned)sx < width1 && (unsigned)sy < height1 ) in remapNearest() 3543 if( (unsigned)sx < width1 && (unsigned)sy < height1 ) in remapNearest() 3820 unsigned width1 = std::max(ssize.width-1, 0), height1 = std::max(ssize.height-1, 0); in remapBilinear() local 3839 (unsigned)XY[dx*2+1] < height1 : !prevInlier; in remapBilinear() 4032 unsigned width1 = std::max(ssize.width-3, 0), height1 = std::max(ssize.height-3, 0); in remapBicubic() local 4051 if( (unsigned)sx < width1 && (unsigned)sy < height1 ) in remapBicubic() 4137 unsigned width1 = std::max(ssize.width-7, 0), height1 = std::max(ssize.height-7, 0); in remapLanczos4() local 4157 if( (unsigned)sx < width1 && (unsigned)sy < height1 ) in remapLanczos4()
|