普通文本  |  64行  |  1.9 KB

# Copyright 2017 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 its.caps
import its.device
import its.target

import numpy as np

GGAIN_TOL = 0.1
FD_TOL = 0.1
SENS_TOL = 0.1
EXP_TOL = 0.1
NUM_TEST_ITERATIONS = 3


def main():
    """Basic test for 3A consistency.

    To pass, 3A must converge for exp, gain, awb, fd within TOL.
    """

    with its.device.ItsSession() as cam:
        props = cam.get_camera_properties()
        its.caps.skip_unless(its.caps.read_3a(props))

        exps = []
        senses = []
        g_gains = []
        fds = []
        for _ in range(NUM_TEST_ITERATIONS):
            try:
                s, e, g, xform, fd = cam.do_3a(get_results=True)
                print ' sensitivity', s, 'exposure', e
                print ' gains', g, 'transform', xform
                print ' fd', fd
                print ''
                exps.append(e)
                senses.append(s)
                g_gains.append(g[2])
                fds.append(fd)
            except its.error.Error:
                print ' FAIL\n'
        assert len(exps) == NUM_TEST_ITERATIONS
        assert np.isclose(np.amax(exps), np.amin(exps), EXP_TOL)
        assert np.isclose(np.amax(senses), np.amin(senses), SENS_TOL)
        assert np.isclose(np.amax(g_gains), np.amin(g_gains), GGAIN_TOL)
        assert np.isclose(np.amax(fds), np.amin(fds), FD_TOL)

if __name__ == '__main__':
    main()