HomeSort by relevance Sort by last modified time
    Searched refs:focalLength (Results 1 - 25 of 34) sorted by null

1 2

  /packages/apps/DevCamera/src/com/android/devcamera/
CameraInfoCache.java 180 float focalLength = 4.5f; // mm, default from Nexus 6P
183 focalLength);
185 focalLength = availableFocalLengths[0];
206 2 * Math.atan(physicalSize.getWidth() * activeWidthFraction / 2 / focalLength));
208 2 * Math.atan(physicalSize.getHeight() * activeHeightFraction / 2 / focalLength));
  /external/opencv/cv/src/
cvposit.cpp 113 float focalLength, CvTermCriteria criteria,
120 float inv_focalLength = 1 / focalLength;
133 if( focalLength <= 0 )
353 double focalLength, CvTermCriteria criteria,
360 IPPI_CALL( icvPOSIT( pObject, imagePoints,(float) focalLength, criteria,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 238 float focalLength = focalLengthPixels(mFovDegrees, dstWidth);
239 float dx = markerX / markerZ * focalLength;
  /packages/apps/Camera2/src/com/android/camera/util/
ExifUtil.java 161 Float focalLength = result.get(CaptureResult.LENS_FOCAL_LENGTH);
162 addExifTag(ExifInterface.TAG_FOCAL_LENGTH, rational(focalLength, FOCAL_LENGTH_PRECISION));
  /device/generic/goldfish/camera/
Exif.cpp 352 float focalLength;
375 focalLength = (entry.count > 0) ? entry.data.f[0] : 5.0f;
376 createEntry(exifData, EXIF_IFD_EXIF, EXIF_TAG_FOCAL_LENGTH, focalLength);
379 ALOGV("degrees %d focalLength %f", degrees, focalLength);
EmulatedFakeCamera3.cpp 452 static const float focalLength = 5.0f;
453 settings.update(ANDROID_LENS_FOCAL_LENGTH, &focalLength, 1);
    [all...]
EmulatedQemuCamera3.cpp 483 static const float focalLength = 5.0f;
484 settings.update(ANDROID_LENS_FOCAL_LENGTH, &focalLength, 1);
    [all...]
EmulatedFakeCamera2.cpp     [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
DetailsDialog.java 171 double focalLength = Double.parseDouble(detail.getValue().toString());
172 value = toLocalNumber(focalLength);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DialogDetailsView.java 218 double focalLength = Double.parseDouble(detail.getValue().toString());
219 value = toLocalNumber(focalLength);
PhotoView.java     [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
SnapshotDialogFragment.java 183 double focalLength = exif.getAttributeDouble(ExifInterface.TAG_FOCAL_LENGTH, 0);
233 append(focalLength).append("\n");
  /cts/tests/tests/media/src/android/media/cts/
ExifInterfaceTest.java 116 public final String focalLength;
162 focalLength = getString(typedArray, index++);
283 assertStringTag(exifInterface, ExifInterface.TAG_FOCAL_LENGTH, expectedValue.focalLength);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ExifInterfaceTest.java 104 public final String focalLength;
147 focalLength = getString(typedArray, 13);
294 assertStringTag(exifInterface, ExifInterface.TAG_FOCAL_LENGTH, expectedValue.focalLength);
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedFakeCamera3.cpp 415 static const float focalLength = 5.0f;
416 settings.update(ANDROID_LENS_FOCAL_LENGTH, &focalLength, 1);
    [all...]
EmulatedFakeCamera2.cpp     [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
StillCaptureTest.java 562 for(float focalLength : focalLengths) {
564 previewRequest.set(CaptureRequest.LENS_FOCAL_LENGTH, focalLength);
574 stillRequest.set(CaptureRequest.LENS_FOCAL_LENGTH, focalLength);
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyMetadataMapper.java     [all...]
  /frameworks/support/exifinterface/src/androidTest/java/androidx/exifinterface/media/
ExifInterfaceTest.java 240 public final String focalLength;
283 focalLength = getString(typedArray, 13);
    [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3PostProc.cpp     [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3PostProc.cpp     [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCameraParametersIntf.cpp 381 int32_t QCameraParametersIntf::getExifFocalLength(rat_t *focalLength)
385 return mImpl->getExifFocalLength(focalLength);
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCameraParametersIntf.cpp 398 int32_t QCameraParametersIntf::getExifFocalLength(rat_t *focalLength)
402 return mImpl->getExifFocalLength(focalLength);
    [all...]
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 667 float focalLength = parameters.getFocalLength();
689 assertTrue(focalLength == -1.0 || focalLength > 0);
695 assertTrue(focalLength > 0);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java     [all...]

Completed in 1965 milliseconds

1 2