Home | History | Annotate | Download | only in tests

Lines Matching refs:Image

15 import its.image
20 import Image
42 img = its.image.load_yuv420_to_rgb_image(fname, w, h)
43 its.image.write_image(img, "%s_black.jpg" % (NAME))
44 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
45 black_means = its.image.compute_image_means(tile)
55 img = its.image.load_yuv420_to_rgb_image(fname, w, h)
56 its.image.write_image(img, "%s_white.jpg" % (NAME))
57 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
58 white_means = its.image.compute_image_means(tile)