Home
last modified time | relevance | path

Searched refs:luma (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DImageCompare.java30 private static double luma(int pixel) { in luma() method in ImageCompare
70 final double Y1 = luma(pixel1); in psnr()
71 final double Y2 = luma(pixel2); in psnr()
/cts/apps/CameraITS/tests/scene1/
Dtest_ev_compensation_basic.py75 luma = its.image.compute_image_means(tile)[0]
76 luma_locked.append(luma)
78 lumas.append(luma)
/cts/apps/CameraITS/pymodules/its/
Dimage.py751 luma = img[:, :, 0]
753 luma = 0.299 * img[:,:,0] + 0.587 * img[:,:,1] + 0.114 * img[:,:,2]
755 [gy, gx] = numpy.gradient(luma)