Ruben Brunk | 370e243 | 2014-10-14 18:33:23 -0700 | [diff] [blame] | 1 | # Copyright 2013 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | import its.image |
| 16 | import its.caps |
| 17 | import its.device |
| 18 | import its.objects |
| 19 | import its.target |
Yin-Chia Yeh | 2970012 | 2016-10-10 10:54:07 -0700 | [diff] [blame] | 20 | from matplotlib import pylab |
Ruben Brunk | 370e243 | 2014-10-14 18:33:23 -0700 | [diff] [blame] | 21 | import os.path |
| 22 | import matplotlib |
| 23 | import matplotlib.pyplot |
| 24 | |
| 25 | def main(): |
| 26 | """Test that settings latch on the right frame. |
| 27 | |
| 28 | Takes a bunch of shots using back-to-back requests, varying the capture |
| 29 | request parameters between shots. Checks that the images that come back |
| 30 | have the expected properties. |
| 31 | """ |
| 32 | NAME = os.path.basename(__file__).split(".")[0] |
| 33 | |
| 34 | with its.device.ItsSession() as cam: |
| 35 | props = cam.get_camera_properties() |
Yin-Chia Yeh | 4d995aa | 2016-03-30 12:17:32 -0700 | [diff] [blame] | 36 | its.caps.skip_unless(its.caps.full_or_better(props)) |
Ruben Brunk | 370e243 | 2014-10-14 18:33:23 -0700 | [diff] [blame] | 37 | |
| 38 | _,fmt = its.objects.get_fastest_manual_capture_settings(props) |
| 39 | e, s = its.target.get_target_exposure_combos(cam)["midExposureTime"] |
| 40 | e /= 2.0 |
| 41 | |
| 42 | r_means = [] |
| 43 | g_means = [] |
| 44 | b_means = [] |
| 45 | |
| 46 | reqs = [ |
Shuzhen Wang | 18b330d | 2016-06-27 11:49:38 -0700 | [diff] [blame] | 47 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 48 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 49 | its.objects.manual_capture_request(s*2,e, 0.0, True, props), |
| 50 | its.objects.manual_capture_request(s*2,e, 0.0, True, props), |
| 51 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 52 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 53 | its.objects.manual_capture_request(s, e*2, 0.0, True, props), |
| 54 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 55 | its.objects.manual_capture_request(s*2,e, 0.0, True, props), |
| 56 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 57 | its.objects.manual_capture_request(s, e*2, 0.0, True, props), |
| 58 | its.objects.manual_capture_request(s, e, 0.0, True, props), |
| 59 | its.objects.manual_capture_request(s, e*2, 0.0, True, props), |
| 60 | its.objects.manual_capture_request(s, e*2, 0.0, True, props), |
Ruben Brunk | 370e243 | 2014-10-14 18:33:23 -0700 | [diff] [blame] | 61 | ] |
| 62 | |
| 63 | caps = cam.do_capture(reqs, fmt) |
| 64 | for i,cap in enumerate(caps): |
| 65 | img = its.image.convert_capture_to_rgb_image(cap) |
| 66 | its.image.write_image(img, "%s_i=%02d.jpg" % (NAME, i)) |
| 67 | tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1) |
| 68 | rgb_means = its.image.compute_image_means(tile) |
| 69 | r_means.append(rgb_means[0]) |
| 70 | g_means.append(rgb_means[1]) |
| 71 | b_means.append(rgb_means[2]) |
| 72 | |
| 73 | # Draw a plot. |
| 74 | idxs = range(len(r_means)) |
| 75 | pylab.plot(idxs, r_means, 'r') |
| 76 | pylab.plot(idxs, g_means, 'g') |
| 77 | pylab.plot(idxs, b_means, 'b') |
| 78 | pylab.ylim([0,1]) |
| 79 | matplotlib.pyplot.savefig("%s_plot_means.png" % (NAME)) |
| 80 | |
| 81 | g_avg = sum(g_means) / len(g_means) |
| 82 | g_ratios = [g / g_avg for g in g_means] |
| 83 | g_hilo = [g>1.0 for g in g_ratios] |
| 84 | assert(g_hilo == [False, False, True, True, False, False, True, |
| 85 | False, True, False, True, False, True, True]) |
| 86 | |
| 87 | if __name__ == '__main__': |
| 88 | main() |
| 89 | |