blob: b5bd63ceb73dcba8b047c04e3e07f4f84bbcce6a [file] [log] [blame]
# Copyright 2018 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os.path
import its.caps
import its.device
import its.image
import its.objects
import its.target
import numpy as np
NAME = os.path.basename(__file__).split('.')[0]
PATCH_SIZE = 0.0625 # 1/16 x 1/16 in center of image
PATCH_LOC = (1-PATCH_SIZE)/2
THRESH_DIFF = 0.06
THRESH_GAIN = 0.1
THRESH_EXP = 0.05
def main():
"""Test both cameras give similar RBG values for gray patch."""
yuv_sizes = {}
with its.device.ItsSession() as cam:
props = cam.get_camera_properties()
its.caps.skip_unless(its.caps.compute_target_exposure(props) and
its.caps.per_frame_control(props) and
its.caps.logical_multi_camera(props) and
its.caps.raw16(props) and
its.caps.manual_sensor(props))
ids = its.caps.logical_multi_camera_physical_ids(props)
max_raw_size = its.objects.get_available_output_sizes('raw', props)[0]
for i in ids:
physical_props = cam.get_camera_properties_by_id(i)
its.caps.skip_unless(not its.caps.mono_camera(physical_props))
yuv_sizes[i] = its.objects.get_available_output_sizes(
'yuv', physical_props, match_ar_size=max_raw_size)
if i == ids[0]:
yuv_match_sizes = yuv_sizes[i]
else:
list(set(yuv_sizes[i]).intersection(yuv_match_sizes))
# find matched size for captures
yuv_match_sizes.sort()
w = yuv_match_sizes[-1][0]
h = yuv_match_sizes[-1][1]
print 'Matched YUV size: (%d, %d)' % (w, h)
# do 3a and create requests
avail_fls = props['android.lens.info.availableFocalLengths']
cam.do_3a()
reqs = []
for i, fl in enumerate(avail_fls):
reqs.append(its.objects.auto_capture_request())
reqs[i]['android.lens.focalLength'] = fl
# capture YUVs
y_means = {}
msg = ''
fmt = [{'format': 'yuv', 'width': w, 'height': h}]
caps = cam.do_capture(reqs, fmt)
if not isinstance(caps, list):
caps = [caps] # handle canonical case where caps is not list
for i, fl in enumerate(avail_fls):
img = its.image.convert_capture_to_rgb_image(caps[i], props=props)
its.image.write_image(img, '%s_yuv_fl=%s.jpg' % (NAME, fl))
y, _, _ = its.image.convert_capture_to_planes(caps[i], props=props)
y_mean = its.image.compute_image_means(
its.image.get_image_patch(y, PATCH_LOC, PATCH_LOC,
PATCH_SIZE, PATCH_SIZE))[0]
print 'y[%s]: %.3f' % (fl, y_mean)
msg += 'y[%s]: %.3f, ' % (fl, y_mean)
y_means[fl] = y_mean
# compare YUVs
msg += 'TOL=%.5f' % THRESH_DIFF
assert np.isclose(max(y_means.values()), min(y_means.values()),
rtol=THRESH_DIFF), msg
if __name__ == '__main__':
main()