कैमरा कॉन्फ़िगर किया जा रहा है

CameraConfig, कैमरा सेंसर में ये शामिल हैं:

  • कैमरा आईडी
  • उपलब्ध होने पर, डेप्थ सेंसर का इस्तेमाल किया जाएगा या नहीं
  • कैमरे का रुख किस तरफ़ है:
    • सामने वाला (सेल्फ़ी)
    • पीछे वाला (दुनिया)
  • FPS (फ़्रेम प्रति सेकंड) रेंज
  • सीपीयू की इमेज के डाइमेंशन
  • जीपीयू टेक्स्चर डाइमेंशन
  • अगर मौजूद हो, तो डिवाइस के स्टीरियो मल्टी-कैमरा का इस्तेमाल किया जाएगा या नहीं

नया ARCore सेशन बनाते समय, ARCore इन चीज़ों का इस्तेमाल करता है कैमरा कॉन्फ़िगरेशन सेट करने के लिए, setCameraConfig जो उपलब्ध कॉन्फ़िगरेशन की सूची से सबसे ज़्यादा मेल खाता हो getSupportedCameraConfigs(CameraConfigFilter). आपका ऐप्लिकेशन CameraConfigFilter का इस्तेमाल कर सकता है रनटाइम के दौरान किसी डिवाइस के लिए उपलब्ध कैमरा कॉन्फ़िगरेशन को कम करने के लिए अपने ऐप्लिकेशन की ज़रूरतों के हिसाब से फ़िल्टर कर सकते हैं.

फ़िल्टर करने के सामान्य उदाहरण ये हैं:

  • कैमरा कैप्चर फ़्रेम रेट को 30 FPS (फ़्रेम प्रति सेकंड) तक सीमित करना. काम करने वाले डिवाइसों पर 60 FPS (फ़्रेम प्रति सेकंड) में, ARCore उन कैमरा कॉन्फ़िगरेशन को प्राथमिकता देगा जो फ़्रेम रेट. 60 FPS (फ़्रेम प्रति सेकंड) पर काम करने वाले सभी कैमरा कॉन्फ़िगरेशन को फ़िल्टर करने के लिए, setTargetFps का इस्तेमाल करके फ़िल्टर लगाएं TargetFps.TARGET_FPS_30 का इस्तेमाल करके.

    Java

    // Return only camera configs that target 30 FPS camera capture frame rate.
    filter.setTargetFps(EnumSet.of(CameraConfig.TargetFps.TARGET_FPS_30));

    Kotlin

    // Return only camera configs that target 30 FPS camera capture frame rate.
    filter.targetFps = EnumSet.of(CameraConfig.TargetFps.TARGET_FPS_30)

  • ARCore को डेप्थ सेंसर का इस्तेमाल करने से रोकें. उन डिवाइस पर जिनके पास यह सुविधा, डेप्थ सेंसर के साथ काम करती है. ARCore, कैमरे की उन सेटिंग को प्राथमिकता देता है जो डेप्थ का इस्तेमाल करती हैं सेंसर. डेप्थ सेंसर का इस्तेमाल करने वाले सभी कैमरा कॉन्फ़िगरेशन को फ़िल्टर करने के लिए, setDepthSensorUsage DepthSensorUsage.DO_NOT_USE का इस्तेमाल करके फ़िल्टर करें.

    Java

    // Return only camera configs that will not use the depth sensor.
    filter.setDepthSensorUsage(EnumSet.of(CameraConfig.DepthSensorUsage.DO_NOT_USE));

    Kotlin

    // Return only camera configs that will not use the depth sensor.
    filter.depthSensorUsage = EnumSet.of(CameraConfig.DepthSensorUsage.DO_NOT_USE)

  • जीपीयू टेक्सचर का कोई दूसरा रिज़ॉल्यूशन चुनना. चालू है इस्तेमाल किए जा सकने वाले डिवाइस, जिनमें ARCore मिल सकता है अतिरिक्त जीपीयू टेक्सचर रिज़ॉल्यूशन. कम रिज़ॉल्यूशन वाला जीपीयू टेक्स्चर चुनना जीपीयू का लोड कम करके, ऐप्लिकेशन की परफ़ॉर्मेंस को बेहतर बनाया जा सकता है हालांकि, बैंडविथ की ज़रूरतों के हिसाब से, सभी केस.

कैमरा कॉन्फ़िगरेशन फ़िल्टर का इस्तेमाल करना

अगर आपको अपने ऐप्लिकेशन को कैमरे के कॉन्फ़िगरेशन फ़िल्टर करने हैं, तो यह तरीका अपनाएं.

Java

// Create a camera config filter for the session.
CameraConfigFilter filter = new CameraConfigFilter(session);

// Return only camera configs that target 30 fps camera capture frame rate.
filter.setTargetFps(EnumSet.of(CameraConfig.TargetFps.TARGET_FPS_30));

// Return only camera configs that will not use the depth sensor.
filter.setDepthSensorUsage(EnumSet.of(CameraConfig.DepthSensorUsage.DO_NOT_USE));

// Get list of configs that match filter settings.
// In this case, this list is guaranteed to contain at least one element,
// because both TargetFps.TARGET_FPS_30 and DepthSensorUsage.DO_NOT_USE
// are supported on all ARCore supported devices.
List<CameraConfig> cameraConfigList = session.getSupportedCameraConfigs(filter);

// Use element 0 from the list of returned camera configs. This is because
// it contains the camera config that best matches the specified filter
// settings.
session.setCameraConfig(cameraConfigList.get(0));

Kotlin

// Create a camera config filter for the session.
val filter = CameraConfigFilter(session)

// Return only camera configs that target 30 fps camera capture frame rate.
filter.targetFps = EnumSet.of(CameraConfig.TargetFps.TARGET_FPS_30)

// Return only camera configs that will not use the depth sensor.
filter.depthSensorUsage = EnumSet.of(CameraConfig.DepthSensorUsage.DO_NOT_USE)

// Get list of configs that match filter settings.
// In this case, this list is guaranteed to contain at least one element,
// because both TargetFps.TARGET_FPS_30 and DepthSensorUsage.DO_NOT_USE
// are supported on all ARCore supported devices.
val cameraConfigList = session.getSupportedCameraConfigs(filter)

// Use element 0 from the list of returned camera configs. This is because
// it contains the camera config that best matches the specified filter
// settings.
session.cameraConfig = cameraConfigList[0]

फ़ोकस मोड

सेशन के कॉन्फ़िगरेशन में भी फ़ोकस मोड को सेट किया जा सकता है. आम तौर पर, फ़िक्स्ड फ़ोकस ट्रैक करने के लिए बेहतर होता है. ज़्यादातर डिवाइसों पर यह ARCore डिफ़ॉल्ट सुविधा होती है. रिकॉर्डिंग, फ़ोटोग्राफ़ी, वीडियोग्राफ़ी के साथ-साथ, आस-पास की चीज़ों को फ़ोकस में रखने के लिए, ऑटो-फ़ोकस करना ज़रूरी है.

Config.FocusMode देखें देखें.