HomeSort by relevance Sort by last modified time
    Searched refs:croppedSensorSize (Results 1 - 2 of 2) sorted by null

  /cts/tests/camera/src/android/hardware/camera2/cts/
StaticMetadataTest.java 125 Size croppedSensorSize = new Size((int)croppedWidth, (int)croppedHeight);
128 croppedSensorSize, maxJpegSize, SIZE_ERROR_MARGIN);
ExtendedCameraCharacteristicsTest.java 573 Size croppedSensorSize = new Size((int)croppedWidth, (int)croppedHeight);
576 (sz.getWidth() <= croppedSensorSize.getWidth() * (1.0 + SIZE_ERROR_MARGIN) &&
577 sz.getWidth() >= croppedSensorSize.getWidth() * (1.0 - SIZE_ERROR_MARGIN) &&
578 sz.getHeight() <= croppedSensorSize.getHeight() * (1.0 + SIZE_ERROR_MARGIN) &&
579 sz.getHeight() >= croppedSensorSize.getHeight() * (1.0 - SIZE_ERROR_MARGIN)));
581 return Pair.create(match, croppedSensorSize);
    [all...]

Completed in 286 milliseconds