Mengonfigurasi sesi ARCore di Android NDK

Konfigurasikan sesi ARCore untuk mem-build pengalaman AR untuk aplikasi Anda.

Apa yang dimaksud dengan sesi?

Semua proses AR, seperti pelacakan gerakan, pemahaman lingkungan, dan estimasi pencahayaan, terjadi di dalam ARCore sesi. ArSession adalah titik entri utama ke ARCore Compute Engine API. Ia mengelola status sistem AR dan menangani siklus proses sesi, sehingga aplikasi untuk membuat, mengkonfigurasi, memulai, atau menghentikan sesi. Yang terpenting, hal ini memungkinkan aplikasi menerima frame yang memungkinkan akses ke gambar kamera dan pose perangkat.

Sesi ini dapat digunakan untuk mengonfigurasi fitur berikut:

Memastikan ARCore sudah diinstal dan sudah diupdate

Sebelum membuat ArSession, pastikan ARCore telah diinstal dan sudah yang terbaru. Jika ARCore tidak diinstal, pembuatan sesi akan gagal dan setiap sesi berikutnya penginstalan atau upgrade ARCore mengharuskan aplikasi dimulai ulang.

/*
 * Check if ARCore is currently usable, i.e. whether ARCore is supported and
 * up to date.
 */
int32_t is_arcore_supported_and_up_to_date(void* env, void* context) {
  ArAvailability availability;
  ArCoreApk_checkAvailability(env, context, &availability);
  switch (availability) {
    case AR_AVAILABILITY_SUPPORTED_INSTALLED:
      return true;
    case AR_AVAILABILITY_SUPPORTED_APK_TOO_OLD:
    case AR_AVAILABILITY_SUPPORTED_NOT_INSTALLED: {
      ArInstallStatus install_status;
      // ArCoreApk_requestInstall is processed asynchronously.
      CHECK(ArCoreApk_requestInstall(env, context, true, &install_status) ==
            AR_SUCCESS);
      return false;
    }
    case AR_AVAILABILITY_UNSUPPORTED_DEVICE_NOT_CAPABLE:
      // This device is not supported for AR.
      return false;
    case AR_AVAILABILITY_UNKNOWN_CHECKING:
      // ARCore is checking the availability with a remote query.
      // This function should be called again after waiting 200 ms
      // to determine the query result.
      handle_check_later();
      return false;
    case AR_AVAILABILITY_UNKNOWN_ERROR:
    case AR_AVAILABILITY_UNKNOWN_TIMED_OUT:
      // There was an error checking for AR availability.
      // This may be due to the device being offline.
      // Handle the error appropriately.
      handle_unknown_error();
      return false;

    default:  // All enum cases have been handled.
      return false;
  }
}

Membuat sesi

Membuat dan mengonfigurasi sesi di ARCore.

// Create a new ARCore session.
ArSession* ar_session = NULL;
CHECK(ArSession_create(env, context, &ar_session) == AR_SUCCESS);

// Create a session config.
ArConfig* ar_config = NULL;
ArConfig_create(ar_session, &ar_config);

// Do feature-specific operations here, such as enabling depth or turning on
// support for Augmented Faces.

// Configure the session.
CHECK(ArSession_configure(ar_session, ar_config) == AR_SUCCESS);

Menutup sesi

ArSession memiliki memori heap native dalam jumlah besar. Gagal untuk menutup sesi secara eksplisit dapat menyebabkan aplikasi Anda kehabisan memori native dan error. Saat sesi AR tidak lagi diperlukan, panggil ArSession_destroy() untuk melepaskan resource.

// Release memory used by the AR session.
ArSession_destroy(session);

Langkah berikutnya