Home
last modified time | relevance | path

Searched refs:img (Results 1 – 25 of 61) sorted by relevance

123

/cts/tests/tests/media/libmediandkjni/
Dcodec-utils-jni.cpp176 NativeImage *img = new NativeImage; in getNativeImage() local
177 img->format = env->CallIntMethod(image, gFields.methodFormat); in getNativeImage()
178 img->width = env->CallIntMethod(image, gFields.methodWidth); in getNativeImage()
179 img->height = env->CallIntMethod(image, gFields.methodHeight); in getNativeImage()
180 img->timestamp = env->CallLongMethod(image, gFields.methodTimestamp); in getNativeImage()
188 img->crop.left = env->GetIntField(area, gFields.fieldLeft); in getNativeImage()
189 img->crop.top = env->GetIntField(area, gFields.fieldTop); in getNativeImage()
190 img->crop.right = env->GetIntField(area, gFields.fieldRight); in getNativeImage()
191 img->crop.bottom = env->GetIntField(area, gFields.fieldBottom); in getNativeImage()
192 if (img->crop.right == 0 && img->crop.bottom == 0) { in getNativeImage()
[all …]
/cts/apps/CameraITS/pymodules/its/
Dimage.py101 img = numpy.ndarray(shape=(2*h*w*4,), dtype='<f', buffer=cap["data"])
102 analysis_image = img.reshape(2,h,w,4)
129 def unpack_raw10_image(img): argument
141 if img.shape[1] % 5 != 0:
143 w = img.shape[1]*4/5
144 h = img.shape[0]
146 msbs = numpy.delete(img, numpy.s_[4::5], 1)
151 lsbs = img[::, 4::5].reshape(h,w/4)
183 def unpack_raw12_image(img): argument
195 if img.shape[1] % 3 != 0:
[all …]
Dcv2image.py29 def scale_img(img, scale=1.0): argument
31 dim = (int(img.shape[1]*scale), int(img.shape[0]*scale))
32 return cv2.resize(img.copy(), dim, interpolation=cv2.INTER_AREA)
35 def gray_scale_img(img): argument
37 if len(img.shape) == 2:
38 img_gray = img.copy()
39 elif len(img.shape) == 3:
40 if img.shape[2] == 1:
41 img_gray = img[:, :, 0].copy()
43 img_gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
[all …]
/cts/apps/CameraITS/tests/scene1/
Dtest_yuv_jpeg_all.py49 img = its.image.convert_capture_to_rgb_image(cap)
50 its.image.write_image(img, "%s_yuv_w%d_h%d.jpg"%(
52 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
62 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
63 its.image.write_image(img, "%s_jpg_w%d_h%d.jpg"%(
65 assert(img.shape[0] == size[1])
66 assert(img.shape[1] == size[0])
67 assert(img.shape[2] == 3)
69 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_crop_region_raw.py88 img = its.image.convert_capture_to_rgb_image(cap, props=props)
89 its.image.write_image(img, "%s_%s.jpg" % (NAME, s))
90 imgs[s] = img
116 for s,img in imgs.iteritems():
117 h,w,ch = img.shape
119 img = img.reshape(h/2,2,w/2,2,3).mean(3).mean(1)
120 img = img.reshape(h/2,w/2,3)
121 imgs2[s] = img
133 for s,img in imgs2.iteritems():
134 its.image.write_image(img, "%s_comp_%s.jpg" % (NAME, s))
Dtest_jpeg.py42 img = its.image.convert_capture_to_rgb_image(cap)
43 its.image.write_image(img, "%s_fmt=yuv.jpg" % (NAME))
44 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
51 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
52 its.image.write_image(img, "%s_fmt=jpg.jpg" % (NAME))
53 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_yuv_plus_jpeg.py48 img = its.image.convert_capture_to_rgb_image(cap_yuv, True)
49 its.image.write_image(img, "%s_yuv.jpg" % (NAME))
50 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
53 img = its.image.convert_capture_to_rgb_image(cap_jpeg, True)
54 its.image.write_image(img, "%s_jpeg.jpg" % (NAME))
55 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_yuv_plus_raw12.py50 img = its.image.convert_capture_to_rgb_image(cap_yuv)
51 its.image.write_image(img, "%s_yuv.jpg" % (NAME), True)
52 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
57 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
58 its.image.write_image(img, "%s_raw.jpg" % (NAME), True)
59 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_yuv_plus_raw.py52 img = its.image.convert_capture_to_rgb_image(cap_yuv)
53 its.image.write_image(img, "%s_shading=%d_yuv.jpg" % (NAME, mode), True)
54 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
59 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
60 its.image.write_image(img, "%s_shading=%d_raw.jpg" % (NAME, mode), True)
61 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_yuv_plus_raw10.py53 img = its.image.convert_capture_to_rgb_image(cap_yuv)
54 its.image.write_image(img, "%s_shading=%d_yuv.jpg" % (NAME, mode), True)
55 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
60 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
61 its.image.write_image(img, "%s_shading=%d_raw.jpg" % (NAME, mode), True)
62 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_tonemap_sequence.py55 img = its.image.convert_capture_to_rgb_image(cap)
56 its.image.write_image(img, "%s_i=%d.jpg" % (NAME, i))
57 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
64 img = its.image.convert_capture_to_rgb_image(cap)
65 its.image.write_image(img, "%s_i=%d.jpg" % (NAME, i))
66 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_black_white.py55 img = its.image.convert_capture_to_rgb_image(cap)
56 its.image.write_image(img, "%s_black.jpg" % (NAME))
57 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
70 img = its.image.convert_capture_to_rgb_image(cap)
71 its.image.write_image(img, "%s_white.jpg" % (NAME))
72 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_param_tonemap_mode.py73 img = its.image.convert_capture_to_rgb_image(cap)
75 img, "%s_n=%d.jpg" %(NAME, n))
76 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
97 img = its.image.convert_capture_to_rgb_image(cap)
99 img, "%s_size=%02d.jpg" %(NAME, size))
100 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_linearity.py82 img = its.image.convert_capture_to_rgb_image(cap)
84 img, '%s_sens=%04d.jpg' % (NAME, sens))
85 img = its.image.apply_lut_to_image(img, inv_gamma_lut[1::2] * LM1)
86 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_reprocess_noise_reduction.py80 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
81 its.image.write_image(img, "%s_low_gain_fmt=jpg.jpg" % (NAME))
82 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
103 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
106 img,
112 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_locked_burst.py63 img = its.image.convert_capture_to_rgb_image(cap)
64 its.image.write_image(img, "%s_frame%d.jpg"%(NAME,i))
65 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
Dtest_param_sensitivity.py58 img = its.image.convert_capture_to_rgb_image(cap)
60 img, "%s_iso=%04d.jpg" % (NAME, s))
61 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
/cts/apps/CameraITS/tests/scene4/
Dtest_aspect_ratio_and_crop.py104 img = its.image.convert_capture_to_rgb_image(cap, props=props)
107 _, _, circle_size = measure_aspect_ratio(img, False, img_name, True)
313 img = its.image.convert_capture_to_rgb_image(frm_iter)
322 img = cv2.undistort(img, k_scale, opencv_dist)
327 img, raw_avlb, img_name, debug)
364 its.image.write_image(img/255, img_name, True)
402 its.image.write_image(img/255, img_name, True)
437 def measure_aspect_ratio(img, raw_avlb, img_name, debug): argument
451 size = img.shape
452 img *= 255
[all …]
/cts/tests/framework/base/activitymanager/src/android/server/am/
DSplashscreenTests.java49 private void assertColors(Bitmap img, Rect bounds, int primaryColor, in assertColors() argument
57 assertThat(x, lessThan(img.getWidth())); in assertColors()
58 assertThat(y, lessThan(img.getHeight())); in assertColors()
59 final int color = img.getPixel(x, y); in assertColors()
/cts/apps/CameraITS/tests/scene0/
Dtest_test_patterns.py75 img = its.image.convert_capture_to_rgb_image(cap, props=props)
78 img = np.fliplr(img)
80 tile = its.image.get_image_patch(img, float(i)/num_bars+delta,
138 img = its.image.convert_capture_to_rgb_image(cap, props=props)
141 its.image.write_image(img, '%s_%d.jpg' % (NAME, pattern), True)
Dtest_burst_capture.py34 img = its.image.convert_capture_to_rgb_image(cap, props=props)
36 its.image.write_image(img, img_name)
/cts/apps/CameraITS/tools/
Dconvert_yuv_to_jpg.py32 img = its.image.load_yuv420_to_rgb_image(fname, w,h, layout=layout)
33 its.image.write_image(img, fname.replace(".yuv",".jpg"), False)
/cts/apps/CameraITS/tests/inprog/
Dtest_param_edge_mode.py43 img = its.image.convert_capture_to_rgb_image(cap)
44 its.image.write_image(img, "%s_mode=%d.jpg" % (NAME, e))
Dtest_blc_lsc.py74 img = its.image.convert_capture_to_rgb_image(cap)
75 its.image.write_image(img, "%s_i=%d.jpg"%(NAME, i))
77 tile_center = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
83 tile_corner = its.image.get_image_patch(img, 0.0, 0.0, 0.1, 0.1)
/cts/apps/CameraITS/tests/scene2/
Dtest_faces.py65 img = its.image.convert_capture_to_rgb_image(cap, props=props)
66 img = its.image.rotate_img_per_argv(img)
68 its.image.write_image(img, img_name)

123