1 <html devsite> 2 <head> 3 <title>Camera HAL Testing Checklist</title> 4 <meta name="project_path" value="/_project.yaml" /> 5 <meta name="book_path" value="/_book.yaml" /> 6 </head> 7 <body> 8 <!-- 9 Copyright 2017 The Android Open Source Project 10 11 Licensed under the Apache License, Version 2.0 (the "License"); 12 you may not use this file except in compliance with the License. 13 You may obtain a copy of the License at 14 15 http://www.apache.org/licenses/LICENSE-2.0 16 17 Unless required by applicable law or agreed to in writing, software 18 distributed under the License is distributed on an "AS IS" BASIS, 19 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 20 See the License for the specific language governing permissions and 21 limitations under the License. 22 --> 23 24 25 26 <p>This document lists all tests available for evaluating the Android camera 27 hardware abstraction layer (HAL). It is intended for OEMs and application 28 processor (AP) vendors so they may ensure proper implementation of the camera 29 HAL with minimum defects. Although this is a voluntary addition to the Android 30 Compatibility Test Suite (CTS), it greatly increases camera test coverage and 31 will certainly identify potential bugs.</p> 32 33 <p>By passing these tests, original equipment manufacturers (OEM) validate whether 34 they have properly integrated the latest Android camera hardware abstraction 35 layer (HAL) 3.2 interfaces. When conforming with all items in the checklist, a 36 device implementation may be considered <em>full</em> with respect to the new Android 37 Camera HAL interfaces. This will in turn enable a device to properly support 38 the new <code>android.hardware.camera2</code> package that camera apps build upon.</p> 39 40 <h2 id=camera_hal_3_2_specification>[ ] 1. Camera HAL 3.2 specification</h2> 41 42 <p>The Android Camera HAL 3.2 specification is the authoritative source of 43 information on what devices must satisfy; the document here provides a summary 44 of all tests that can be used as a checklist. Camera HAL implementers (e.g. AP 45 vendors) should go through the HAL 3.2 specification line-by-line and ensure 46 their devices conform to it.</p> 47 48 <p>The current HAL 3.2 specification is defined in these files within the L 49 generic Android Platform Development Kit (PDK):</p> 50 51 <ul> 52 <li><em>Camera HAL 3.x interface and spec</em>: <code><a 53 href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/camera3.h">hardware/libhardware/include/hardware/camera3.h</a></code>, 54 <code><a 55 href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/camera_common.h">hardware/libhardware/include/hardware/camera_common.h</a></code> 56 <li><em>Camera HAL 3.x metadata spec</em>: <code><a 57 href="https://android.googlesource.com/platform/system/media/+/master/camera/docs/docs.html">system/media/camera/docs/docs.html</a></code> 58 <li><em>HAL pixel format interface and spec</em>: <code><a 59 href="https://android.googlesource.com/platform/system/core/+/master/include/system/graphics.h">system/core/include/system/graphics.h</a></code> 60 </ul> 61 62 <h2 id=camera_test_types>[ ] 2. Camera test types</h2> 63 64 <p>Here are the primary types of tests available for the latest Android camera 65 along with references to associated instructions below:</p> 66 67 <ul> 68 <li><em><a href="#native_tests">Native</a>:</em> Tests that directly test the camera HAL interface 69 <li><em><a href="#cts_tests">Compatibility Test Suite (CTS)</a></em>: Standard, automated Android 70 tests to ensure device compatibility - see the <a 71 href="/compatibility/cts/index.html">CTS introduction</a> and the <a 72 href="/devices/tech/test_infra/tradefed/index.html">Trade Federation 73 Overview</a> 74 <li><em><a href="#its_tests">Image Test Suite (ITS)</a>:</em> Manually run tests to ensure image 75 correctness - see the top-level and 76 test-specific <code>README</code> files and tutorial.py for setup instructions 77 <li><em><a href="#manual_tests_with_aosp_camera_app">Manual tests with the 78 Android Open Source Project (AOSP) Camera App</a>:</em> User-like testing of 79 common camera functions 80 <li><em><a href="#manual_testingcam_tests">Manual TestingCam tests</a>:</em> 81 Run from the source in <code>pdk/apps/TestingCamera/</code> 82 <li><em><a href="#manual_testingcam2_tests">Manual TestingCam2.1 83 tests</a>:</em> Run from the source in <code>pdk/apps/TestingCamera2/</code> 84 </ul> 85 86 <p>All of these test types are described in detail below. These tests are 87 presented in the chronological order in which OEMs are expected to execute 88 them.</p> 89 90 <p>For instance, if a device fails the native tests, it will assuredly fail the 91 subsequent Compatibility Test Suite (CTS) tests. And if a device fails CTS, 92 there is little use in proceeding to the Image Test Suite (ITS). We recommend 93 addressing failures in each test type before proceeding to the next set of 94 tests.</p> 95 96 <h2 id=native_tests>[ ] 3. Native tests</h2> 97 98 <p>These tests directly test the camera HAL interface.</p> 99 100 <p>The starting path for Camera native tests is: 101 <code>platform/hardware/libhardware</code></p> 102 103 <p>To set up these tests:</p> 104 105 <pre class="devsite-click-to-copy"> 106 <code class="devsite-terminal">cd hardware/libhardware/tests/camera*/</code> 107 <code class="devsite-terminal">mm</code> 108 <code class="devsite-terminal">adb remount; adb sync</code> 109 </pre> 110 111 <h3 id=hal_3_x_tests>[ ] 3.1. HAL 3.x tests</h3> 112 113 <p>Find these camera tests under: 114 <code>hardware/libhardware/tests/camera3/*</code></p> 115 116 <p>To run all tests:</p> 117 118 <pre class="devsite-terminal devsite-click-to-copy"> 119 adb shell /data/nativetest/camera3_test/camera3_test 120 </pre> 121 122 <p>You receive an <strong>OK</strong> for each passed test. Errors are logged 123 at the end of output along with a summary of tests passed.</p> 124 125 <h3 id=hal_2_3_tests>[ ] 3.2. HAL 2/3 tests</h3> 126 127 <p>Find these camera tests under: 128 <code>hardware/libhardware/tests/camera2/*</code></p> 129 130 <p>To run all tests:</p> 131 132 <pre class="devsite-terminal devsite-click-to-copy"> 133 adb shell /data/nativetest/camera3_test/camera3_test 134 </pre> 135 136 <p>To run a single test, pass the <code>--gtest_filter</code> argument and the 137 test name, like so:</p> 138 139 <pre class="devsite-terminal devsite-click-to-copy"> 140 adb shell /data/nativetest/camera2_test/camera2_test --gtest_filter=Camera2Test.OpenClose 141 </pre> 142 143 <p>To run a subset of tests, use a wildcard with the 144 <code>--gtest_filter</code> argument, like so:</p> 145 146 <pre class="devsite-terminal devsite-click-to-copy"> 147 adb shell /data/nativetest/camera2_test/camera2_test --gtest_filter=Camera2Test.* 148 </pre> 149 150 <h3 id=3_tests_that_interact_with_the_camera_service>[ ] 3.3. Tests that 151 interact with the camera service</h3> 152 153 <p>Find these camera tests under: <code>frameworks/av/camera/tests/*</code></p> 154 155 <h3 id=camera_metadata_tests>[ ] 3.4. Camera metadata tests</h3> 156 157 <p>Find these camera tests under: <code>system/media/camera/tests/*</code></p> 158 159 <h2 id=cts_tests>[ ] 4. Compatibility Test Suite (CTS) tests</h2> 160 161 <p>Camera Android Compatibility Test Suite (CTS) tests focus upon device 162 compatibility. They do not require a specific test environment (the field of 163 view or FOV CTS Verifier test being the lone exception).</p> 164 165 <p>The starting path for Camera CTS tests is: <code>platform/cts</code></p> 166 167 <p>See the <a href="/compatibility/cts/index.html">CTS 168 introduction</a> and its subpages for general instructions on running CTS.</p> 169 170 <h3 id=cts_tests_for_the_android_hardware_camera_api>[ ] 4.1. CTS tests for 171 the <code>android.hardware.Camera</code> API</h3> 172 173 <p>Find these camera tests under <code>cts/tests/tests/</code>:</p> 174 175 <ul> 176 <li><code>hardware/src/android/hardware/cts/CameraTest.java</code> 177 <li><code>hardware/src/android/hardware/cts/CameraGLTest.java</code> 178 <li><code>hardware/src/android/hardware/cts/Camera_SizeTest.java</code> 179 <li><code>permission/src/android/permission/cts/CameraPermissionTest.java</code> 180 </ul> 181 182 <h3 id=cts_tests_for_the_android_hardware_camera2_api>[ ] 4.2. CTS tests for 183 the <code>android.hardware.camera2</code> API</h3> 184 185 <p>Find these camera tests under <code>cts/tests/tests/</code>:</p> 186 187 <ul> 188 <li><code>hardware/src/android/hardware/camera2/cts/*</code> 189 <li><code>permission/src/android/permission/cts/Camera2PermissionTest.java</code> 190 </ul> 191 192 <h3 id=cts_verifier_camera_tests>[ ] 4.3. CTS Verifier camera tests</h3> 193 194 <p>Find these camera tests under: 195 <code>cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/*</code></p> 196 197 <h2 id=its_tests>[ ] 5. Image Test Suite (ITS) tests</h2> 198 199 <p>The CameraITS tests focus upon image correctness. These Python scripts are 200 manually run on a workstation with the Android device connected over USB. The 201 workstation can run any operating system as long as it has the requisite Python 202 2.7 environment.</p> 203 204 <p class="note">Since ITS is a CTS Verifier subtest, start CTS Verifier and the 205 ITS subtest before running the python scripts so they have processes with which 206 to communicate.</p> 207 208 <p>The CameraITS infrastructure and tests are located under: <code>cts/apps/CameraITS</code></p> 209 210 <p>See the latest <code>README</code> file in this top-level folder for 211 instructions on how to set up and run the tests. For setup: <code>make 212 cts</code></p> 213 214 <pre class="devsite-click-to-copy"> 215 <code class="devsite-terminal">extract root/out/host/linux-x86/cts-verfier/android-cts-verifier.zip</code> 216 <code class="devsite-terminal">cd android-cts-verifier</code> 217 <code class="devsite-terminal">adb install -r CtsVerifier.apk</code> 218 <code class="devsite-terminal">cd CameraITS</code> 219 </pre> 220 221 <p>See <code>tutorial.py</code> in the <code>tests</code> subdirectory for a 222 walkthrough of the script's use. Each test resides in a corresponding 223 <code>tests/scene<#></code> subdirectory. See the <code>README</code> file in 224 each subdirectory for specific test instructions.</p> 225 226 <p>You will need a simple physical environment with a specific, reusable target 227 such as a white wall, grey card, and desk lamp. The Android device is mounted 228 on a tripod and its camera functions are exercised by the scripts. Most tests 229 are pass or fail but some offer metrics, as well.</p> 230 231 <p>These tests are works-in-progress and are not yet comprehensive enough for 232 full automated pass/fail validation of the camera HAL. However, these scripts 233 do test scenarios that are not tested in CTS and are an important component of 234 the overall HAL 3.2 test plan.</p> 235 236 <h3 id=its_tests_on_scene_0_plain>[ ] 5.1. ITS tests on scene 0 (plain)</h3> 237 238 <p>This test requires no specific setup. Pass all of the tests in the 239 <code>tests/scene0</code> folder, for all cameras (back + front + any 240 others).</p> 241 242 <h3 id=its_tests_on_scene_1_grey_card>[ ] 5.2. ITS tests on scene 1 (grey card)</h3> 243 244 <p>Pass all of the tests in the <code>tests/scene1</code> folder, for all 245 cameras (back + front + any others). The <code>tests/scene1/README</code> file 246 describes the scene setup.</p> 247 248 <h3 id=its_tests_on_scene_2_camera_lab>[ ] 5.3. ITS tests on scene 2 (camera lab)</h3> 249 250 <p>Pass all of the tests in the <code>tests/scene2</code> folder, for all 251 cameras (back + front + any others). The <code>tests/scene2/README</code> file 252 describes the scene setup.</p> 253 254 <h2 id=manual_tests_with_aosp_camera_app>[ ] 6. Manual tests with the AOSP App</h2> 255 256 <h3 id=camera_mode_aosp_camera_app>[ ] 6.1. Camera mode</h3> 257 258 <p>For all cameras on the device (front, back, and any others), verify:</p> 259 260 <ol> 261 <li>Images can be captured and reviewed on the device, and the images look good 262 with no obvious problems. 263 <li>Tap-to-focus, continuous autofocus, macro focus, infinity focus, AWB, and AEC 264 are all reliable. 265 <li>Tap-to-focus, continuous autofocus, AWB, and AEC are reliable when using 266 digital zoom (during capture). 267 <li>Flash settings (on/off/auto) are reliable and synchronize well with the 3As. 268 </ol> 269 270 <h3 id=video_mode_aosp_camera_app>[ ] 6.2. Video mode</h3> 271 272 <p>For all cameras on the device (front, back, and any others), verify:</p> 273 274 <ol> 275 <li>Videos can be captured and reviewed on the device, and the videos look good 276 with no obvious problems. 277 <li>Capturing a snapshot while in the middle of recording a video works. 278 <li>Tap-to-focus, continuous autofocus, macro focus, infinity focus, AWB, and AEC 279 are all reliable. 280 <li>Tap-to-focus, continuous autofocus, AWB, and AEC are reliable when using 281 digital zoom (during capture). 282 <li>Torch settings (on/off) are reliable and synchronize well with the 3As. 283 </ol> 284 285 <h3 id=camera_settings_resolution>[ ] 6.3. Camera settings: resolution</h3> 286 287 <p>For all cameras on the device (front, back, and any others), and for all 288 resolutions available in the menu, verify that correct resolution settings are 289 returned and applied for:</p> 290 291 <ul> 292 <li>Camera mode 293 <li>Video mode 294 <li>LensBlur 295 <li>PhotoSphere 296 <li>Panorama 297 </ul> 298 299 <h3 id=camera_settings_exposure_compensation>[ ] 6.4. Camera settings: 300 exposure compensation</h3> 301 302 <p>Verify that exposure compensation is applied (at +2 and -2).</p> 303 304 <h3 id=photosphere>[ ] 6.5. PhotoSphere</h3> 305 306 <p>Capture full 360-degree PhotoSphere images shot with each of the front and 307 rear cameras. Verify all of the individual frames are focused at infinity and the 308 exposure and white balance match between shots.</p> 309 310 <h3 id=panorama>[ ] 6.6. Panorama</h3> 311 312 <p>Capture vertical, horizontal, and wide-angle panoramas (with both front and 313 rear cameras), and verify all of the individual frames are focused at infinity 314 and the exposure and white balance matches between shots.</p> 315 316 <h3 id=lensblur>[ ] 6.7. LensBlur</h3> 317 318 <p>Capture a LensBlur image with both front and rear cameras, and verify 319 refocusing to different depths (while reviewing the captured shots) works.</p> 320 321 <p>Also verify tap-to-focus, continuous autofocus, AWB, and AEC are reliable in 322 this mode.</p> 323 324 <h2 id=media_framework_tests>[ ] 7. Media Framework tests</h2> 325 326 <p>Pass all of the camera-related media tests in MediaFrameworkTest. Please note, 327 these tests require the mediaframeworktest.apk be installed on the Android 328 device. You will need to <code>make mediaframeworktest</code> and then use adb 329 to install the resulting .apk. Example commands are included below.</p> 330 331 <p>The starting path for Camera-related media framework tests is: 332 <code>platform/frameworks/base</code></p> 333 334 <p>Find the source code for the tests here: 335 <code>frameworks/base/media/tests/MediaFrameworkTest</code></p> 336 337 <p>To set up these tests:</p> 338 339 <pre class="devsite-click-to-copy"> 340 <code class="devsite-terminal">make mediaframeworktest</code> 341 <code class="devsite-terminal">adb install out/target/product/<em><name></em>/data/app/mediaframeworktest.apk</code> 342 </pre> 343 344 <p>Where the <em><code><name></code></em> variable represents the directory 345 containing the vendor's product.</p> 346 347 <p>Find all of the tests in the following directory or its subdirectories:</p> 348 349 <pre class="devsite-click-to-copy"> 350 frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest 351 </pre> 352 353 <p>Each subdirectory represents a class of tests:</p> 354 355 <ul> 356 <li><code>functional/</code> 357 <li><code>integration/</code> 358 <li><code>performance/</code> 359 <li><code>power/</code> 360 <li><code>stress/</code> 361 <li><code>unit/</code> 362 </ul> 363 364 <h3 id=running_media_framework_tests>[ ] 7.1. Running Media Framework tests</h3> 365 366 <p>To see all of the available tests::</p> 367 368 <pre class="devsite-terminal devsite-click-to-copy"> 369 adb shell pm list instrumentation 370 </pre> 371 372 <p>This will yield results resembling:</p> 373 374 <pre class="devsite-click-to-copy"> 375 instrumentation:com.android.mediaframeworktest/.MediaFrameworkIntegrationTestRunner 376 (target=com.android.mediaframeworktest) 377 instrumentation:com.android.mediaframeworktest/.MediaRecorderStressTestRunner 378 (target=com.android.mediaframeworktest) 379 instrumentation:com.android.mediaframeworktest/.MediaFrameworkPerfTestRunner 380 (target=com.android.mediaframeworktest) 381 instrumentation:com.android.mediaframeworktest/.MediaFrameworkPowerTestRunner 382 (target=com.android.mediaframeworktest) 383 </pre> 384 385 <p>Identify and extract the component (between <code>instrumentation:</code> 386 and <code>(target=com.android.mediaframeworktest) </code>from each test line. 387 The component is composed of the target package name 388 (<code>com.android.mediaframeworktest</code>) and the test runner name 389 (<code>MediaFramework<type>TestRunner</code>).</p> 390 391 <p>For instance:</p> 392 393 <pre class="devsite-click-to-copy"> 394 com.android.mediaframeworktest/.MediaFrameworkIntegrationTestRunner 395 com.android.mediaframeworktest/.MediaRecorderStressTestRunner 396 com.android.mediaframeworktest/.MediaFrameworkPerfTestRunner 397 com.android.mediaframeworktest/.MediaFrameworkPowerTestRunner 398 </pre> 399 400 <p>You may then pass each component to <code>adb shell am instrument</code> like so:</p> 401 402 <pre class="devsite-terminal devsite-click-to-copy"> 403 adb shell am instrument -w <component.name> 404 </pre> 405 406 <p>Where the <component.name> equals the extracted value above. For example:</p> 407 408 <pre class="devsite-terminal devsite-click-to-copy"> 409 adb shell am instrument -w com.android.mediaframeworktest/.MediaFrameworkIntegrationTestRunner 410 </pre> 411 412 <p>Please note, while the class path is the Java package + class name, the 413 instrumentation package isn't necessarily the same as the Java package. Make 414 sure you use the AndroidManifest.xml package when concatenating the component 415 name, not the Java package in which the test runner class resides.</p> 416 417 <p>To run a single class of tests, pass the -e class <test-class> argument, like 418 so:</p> 419 420 <pre class="devsite-terminal devsite-click-to-copy"> 421 adb shell am instrument -e class com.android.mediaframeworktest.integration.CameraBinderTest -w com.android.mediaframeworktest/.MediaFrameworkIntegrationTestRunner 422 </pre> 423 424 <p>To run only a single method in a test class, append a pound (#) sign and the 425 method name (in this case, <code>testConnectPro</code>) to the class name, like so:</p> 426 427 <pre class="devsite-terminal devsite-click-to-copy"> 428 adb shell am instrument -e class 'com.android.mediaframeworktest.integration.CameraBinderTest#testConnectPro' -w com.android.mediaframeworktest/.MediaFrameworkIntegrationTestRunner 429 </pre> 430 431 <h3 id=media_settings_functional_tests>[ ] 7.2. Media settings functional tests</h3> 432 433 <p>Here is an example run of a functional test. This test verifies the basic 434 functionality of different combinations of camera settings. (ie, Flash, 435 exposure, WB, scene, picture size and geoTag)</p> 436 437 <p>Run the test command:</p> 438 <pre class="devsite-terminal devsite-click-to-copy"> 439 adb shell am instrument -w -r -e delay_msec 15 -e log true -e class com.android.mediaframeworktest.functional.camera.CameraPairwiseTest com.android.mediaframeworktest/com.android.mediaframeworktest.CameraStressTestRunner 440 </pre> 441 442 <h3 id=media_integration_tests>[ ] 7.3. Media integration tests</h3> 443 444 <p>Here is an example run of an integration test, in this case 445 mediaframeworktest/integration/CameraBinderTest.java and 446 mediaframeworktest/CameraStressTestRunner.java:</p> 447 448 <pre class="devsite-terminal devsite-click-to-copy"> 449 adb shell am instrument -e class \ 'com.android.mediaframeworktest.<strong>integration</strong>.<strong>CameraBinderTest'</strong> -w \ 'com.android.mediaframeworktest/.<strong>CameraStressTestRunner'</strong> 450 </pre> 451 452 <p>If successful, this results in output resembling:</p> 453 454 <pre class="devsite-click-to-copy"> 455 ----- 456 457 com.android.mediaframeworktest.integration.CameraBinderTest:........... 458 Test results for CameraStressTestRunner=........... 459 Time: 3.328 460 461 OK (11 tests) 462 463 ----- 464 </pre> 465 466 <h3 id=media_performance_tests>[ ] 7.4. Media performance tests</h3> 467 468 <p>This preview memory test will open and release the camera preview for 200 469 times. In each 20 iterations, the snapshot of ps mediaserver will be recorded 470 and it will compare the memory usage different after 200 iterations. Test will 471 fail If the difference is greater than 150kM.</p> 472 473 <p>Run the test command:</p> 474 <pre class="devsite-terminal devsite-click-to-copy"> 475 adb shell am instrument -w -r -e class com.android.mediaframeworktest.performance.MediaPlayerPerformance#testCameraPreviewMemoryUsage com.android.mediaframeworktest/.MediaFrameworkPerfTestRunner 476 </pre> 477 478 <p>More detailed output can be found in: 479 <code>/sdcard/mediaMemOutput.txt</code></p> 480 481 <h3 id=media_unit_tests>[ ] 7.5. Media unit tests</h3> 482 483 <p>The commands to run unit tests are all similar. For example, for 484 CameraMetadataTest.java, the command would be:</p> 485 486 <pre class="devsite-terminal devsite-click-to-copy"> 487 adb shell am instrument -e class 'com.android.mediaframeworktest.unit.CameraMetadataTest' -w 'com.android.mediaframeworktest/.CameraStressTestRunner' 488 </pre> 489 490 <h3 id=media_stress_tests>[ ] 7.6. Media stress tests</h3> 491 492 <p>This test is to stress out the camera image capture and video recording.</p> 493 494 <p>Run the test command:</p> 495 496 <pre class="devsite-terminal devsite-click-to-copy"> 497 adb shell am instrument -w com.google.android.camera.tests/com.android.camera.stress.CameraStressTestRunner 498 </pre> 499 500 <p>All tests should pass.</p> 501 502 <h2 id=manual_testingcam_tests>[ ] 8. Manual TestingCam tests</h2> 503 504 <p>The TestingCam app should be run manually with the following checks performed. 505 The source for TestingCam is here: <code>pdk/apps/TestingCamera/</code></p> 506 507 <h3 id=infinity_focus_with_camera_tilt>[ ] 8.1. Infinity focus with camera tilt</h3> 508 509 <p>Start TestingCam, turn on preview, and ensure that autofocus mode is set to 510 infinity. Using the <strong>Take picture</strong> button, capture shots of 511 distant subjects (at least 10m away) with the camera pointed horizontally, 512 upwards (close to vertical), and downwards (close to vertical); an example of 513 the upwards shot could be high leaves/branches of a tree from beneath and an 514 example of the downwards shot could be the street as seen from the roof of a 515 building. In all cases, the distant subject should be sharp and in focus. Save 516 and view the shots in the gallery view so that you can zoom in and inspect the 517 sharpness more easily.</p> 518 519 <p>Note that for a camera with a VCM actuator to pass this test, it will require 520 either a closed-loop AF control system, or it will need some sort of SW 521 correction based on using accelerometer data to determine camera orientation. 522 Reliable factory calibration of the lens infinity position will also be needed.</p> 523 524 <h2 id=manual_testingcam2_tests>[ ] 9. Manual TestingCam2 tests</h2> 525 526 <p>The TestingCam2 app should be run manually, with the following checks 527 performed. The source for TestingCam2 is here: <code>pdk/apps/TestingCamera2/</code></p> 528 529 <h3 id=9_1_jpeg_capture>[ ] 9.1. JPEG capture</h3> 530 531 <p>Start TestingCam2, and press the <strong>JPEG</strong> button. The image 532 that appears to the right of the viewfinder image should appear the same as the 533 viewfinder, including having the same orientation.</p> 534 535 </body> 536 </html> 537