Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
ARCore, ImageMetadata kullanarak
kamera görüntüsü yakalama sonucu. Gördüğünüz bazı yaygın kamera resmi meta veri türleri
Örneğin odak uzaklığı, resmin zaman damgası ve ışıklandırma gibi
ekleyebilirsiniz.
Android Camera modülü, resimle ilgili 160 veya daha fazla parametre kaydedebilir
(cihazın özelliklerine bağlı olarak) yakalanan her kare için ayrı ayrı gösterilir. Tümünün listesi için
olası meta veri anahtarları için ImageMetadata bölümüne bakın.
Bağımsız bir meta veri anahtarının değerini alma
getImageMetadata() kullanın
belirli bir meta veri anahtarı değerini alın ve MetadataNotFoundException
ulaşılamıyorsa. Aşağıdaki örnekte,
SENSOR_EXPOSURE_TIME meta veri anahtarı değeri.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-10-14 UTC."],[[["ARCore provides access to camera image metadata like focal length, timestamp, and lighting information using `ImageMetadata`."],["Android's `Camera` module can record over 160 image parameters, which can be accessed through the `ImageMetadata` class."],["Developers can retrieve specific metadata values using `getImageMetadata()`, while handling potential exceptions like `MetadataNotFoundException`."],["The provided Java and Kotlin code snippets demonstrate how to obtain the `SENSOR_EXPOSURE_TIME` metadata value from a frame."]]],["ARCore utilizes `ImageMetadata` to access camera image capture metadata, such as focal length, timestamps, and lighting. The Android `Camera` module can record over 160 parameters per frame. To retrieve a specific key value, use `getImageMetadata()`, handling `MetadataNotFoundException`. The example demonstrates fetching the `SENSOR_EXPOSURE_TIME` metadata, using `getLong()` method and handling `NotYetAvailableException` if sensor data is unavailable. Refer to the `ImageMetadata` documentation for the complete list of available keys.\n"]]