你可以使用機器學習套件辨識及解碼條碼。
功能 | 未分類郵件 | 組合 |
---|---|---|
實作 | 系統會透過 Google Play 服務動態下載模型。 | 模型會在建構期間以靜態方式連結至您的應用程式。 |
應用程式大小 | 增加約 200 KB。 | 大小增加約 2.4 MB。 |
初始化時間 | 可能必須先等待模型下載完成才能使用。 | 可立即使用模型。 |
立即體驗
- 請試用範例應用程式,查看這個 API 的使用範例。
- 請參閱 Material Design 展示應用程式,瞭解這個 API 的端對端實作方式。
事前準備
在專案層級的
build.gradle
檔案中,請務必在您的buildscript
和allprojects
區段中加入 Google 的 Maven 存放區。將 ML Kit Android 程式庫的依附元件新增至模組的應用程式層級 Gradle 檔案 (通常為
app/build.gradle
)。依據您的需求選擇下列其中一種依附元件:如要為您的應用程式建立模型組合:
dependencies { // ... // Use this dependency to bundle the model with your app implementation 'com.google.mlkit:barcode-scanning:17.0.3' }
在 Google Play 服務中使用模型:
dependencies { // ... // Use this dependency to use the dynamically downloaded model in Google Play Services implementation 'com.google.android.gms:play-services-mlkit-barcode-scanning:18.1.0' }
如果您選擇在 Google Play 服務中使用模型,可以設定應用程式,從應用程式從 Play 商店安裝應用程式後,自動將模型下載到裝置上。為此,請在應用程式的
AndroidManifest.xml
檔案中新增以下宣告:<application ...> ... <meta-data android:name="com.google.mlkit.vision.DEPENDENCIES" android:value="barcode" > <!-- To use multiple models: android:value="barcode,model2,model3" --> </application>
您也可以明確檢查模型可用性,以及透過 Google Play 服務 ModuleInstallClient API 要求下載。
如果您未啟用安裝時模型下載,或要求明確下載,系統會在您第一次掃描掃描器時下載模型。在下載作業完成前提交的要求不會產生任何結果。
輸入圖片規範
-
為了讓機器學習套件能準確讀取條碼,輸入圖片必須包含用來代表充足像素資料的條碼。
許多像素資料需求都取決於條碼類型和其中編碼的資料量,因為許多條碼都支援可變大小酬載。一般而言,條碼最小的有意義的單位至少應為 2 像素的寬度,而二維代碼的高度應為 2 像素。
舉例來說,EAN-13 條碼是由 1、2、3 或 4 個單位寬的長條和空格所組成,因此 EAN-13 條碼圖片的長條和空格至少應為 2、4、6 和 8 像素寬度。由於 EAN-13 條碼的總寬度為 95 單位,所以條碼至少應為 190 像素寬。
PDF417 等 Denser 格式需要較大的像素尺寸,機器學習套件才能穩定讀取。舉例來說,PDF 417 程式碼的單一資料列最多可包含 34 個 17 單位寬的「字詞」,理想情況下寬度至少為 1156 像素。
-
圖片焦點不佳可能會影響掃描準確度。如果您的應用程式無法取得可接受的結果,請要求使用者擷取圖片。
-
如果是一般應用程式,則建議提供解析度更高的圖片,例如 1280x720 或 1920x1080,讓掃描碼範圍較遠的相機也能掃描。
不過,在延遲時間極長的應用程式中,您可以採用較低解析度拍攝圖片,藉此提升效能,但要求條碼會佔大部分的輸入圖像。另請參閱改善即時效能的提示。
1. 設定條碼掃描器
如果知道您預期讀取哪些條碼格式,則可以將其設定為只偵測這些格式,藉此改善條碼偵測器的速度。舉例來說,如果只要偵測 Aztec 代碼和 QR 圖碼,請建構 BarcodeScannerOptions
物件,如下列範例所示:
Kotlin
val options = BarcodeScannerOptions.Builder() .setBarcodeFormats( Barcode.FORMAT_QR_CODE, Barcode.FORMAT_AZTEC) .build()
Java
BarcodeScannerOptions options = new BarcodeScannerOptions.Builder() .setBarcodeFormats( Barcode.FORMAT_QR_CODE, Barcode.FORMAT_AZTEC) .build();
系統支援以下格式:
- 代碼 128 (
FORMAT_CODE_128
) - 代碼 39 (
FORMAT_CODE_39
) - 代碼 93 (
FORMAT_CODE_93
) - 科達巴 (
FORMAT_CODABAR
) - EAN-13 (
FORMAT_EAN_13
) - EAN-8 (
FORMAT_EAN_8
) - ITF (
FORMAT_ITF
) - UPC-A (
FORMAT_UPC_A
) - UPC-E (
FORMAT_UPC_E
) - QR 圖碼 (
FORMAT_QR_CODE
) - PDF417 (
FORMAT_PDF417
) - 阿茲特克 (
FORMAT_AZTEC
) - 資料矩陣 (
FORMAT_DATA_MATRIX
)
2. 準備輸入圖片
如要識別映像檔中的條碼,請透過Bitmap
、media.Image
、ByteBuffer
、位元組陣列或裝置上的檔案建立 InputImage
物件。然後將 InputImage
物件傳遞至 BarcodeScanner
的 process
方法。
您可以從不同來源建立 InputImage
物件,以下將分別說明。
使用 media.Image
如要從 media.Image
物件建立 InputImage
物件 (例如從裝置相機拍攝圖片時),請將 media.Image
物件和圖片旋轉至 InputImage.fromMediaImage()
。
如果使用 CameraX 程式庫,OnImageCapturedListener
和 ImageAnalysis.Analyzer
類別會為您計算旋轉值。
Kotlin
private class YourImageAnalyzer : ImageAnalysis.Analyzer { override fun analyze(imageProxy: ImageProxy) { val mediaImage = imageProxy.image if (mediaImage != null) { val image = InputImage.fromMediaImage(mediaImage, imageProxy.imageInfo.rotationDegrees) // Pass image to an ML Kit Vision API // ... } } }
Java
private class YourAnalyzer implements ImageAnalysis.Analyzer { @Override public void analyze(ImageProxy imageProxy) { Image mediaImage = imageProxy.getImage(); if (mediaImage != null) { InputImage image = InputImage.fromMediaImage(mediaImage, imageProxy.getImageInfo().getRotationDegrees()); // Pass image to an ML Kit Vision API // ... } } }
如果您使用的相機程式庫會提供圖片旋轉角度,則可從裝置的旋轉度和裝置相機感應器的方向計算,如下所示:
Kotlin
private val ORIENTATIONS = SparseIntArray() init { ORIENTATIONS.append(Surface.ROTATION_0, 0) ORIENTATIONS.append(Surface.ROTATION_90, 90) ORIENTATIONS.append(Surface.ROTATION_180, 180) ORIENTATIONS.append(Surface.ROTATION_270, 270) } /** * Get the angle by which an image must be rotated given the device's current * orientation. */ @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) @Throws(CameraAccessException::class) private fun getRotationCompensation(cameraId: String, activity: Activity, isFrontFacing: Boolean): Int { // Get the device's current rotation relative to its "native" orientation. // Then, from the ORIENTATIONS table, look up the angle the image must be // rotated to compensate for the device's rotation. val deviceRotation = activity.windowManager.defaultDisplay.rotation var rotationCompensation = ORIENTATIONS.get(deviceRotation) // Get the device's sensor orientation. val cameraManager = activity.getSystemService(CAMERA_SERVICE) as CameraManager val sensorOrientation = cameraManager .getCameraCharacteristics(cameraId) .get(CameraCharacteristics.SENSOR_ORIENTATION)!! if (isFrontFacing) { rotationCompensation = (sensorOrientation + rotationCompensation) % 360 } else { // back-facing rotationCompensation = (sensorOrientation - rotationCompensation + 360) % 360 } return rotationCompensation }
Java
private static final SparseIntArray ORIENTATIONS = new SparseIntArray(); static { ORIENTATIONS.append(Surface.ROTATION_0, 0); ORIENTATIONS.append(Surface.ROTATION_90, 90); ORIENTATIONS.append(Surface.ROTATION_180, 180); ORIENTATIONS.append(Surface.ROTATION_270, 270); } /** * Get the angle by which an image must be rotated given the device's current * orientation. */ @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) private int getRotationCompensation(String cameraId, Activity activity, boolean isFrontFacing) throws CameraAccessException { // Get the device's current rotation relative to its "native" orientation. // Then, from the ORIENTATIONS table, look up the angle the image must be // rotated to compensate for the device's rotation. int deviceRotation = activity.getWindowManager().getDefaultDisplay().getRotation(); int rotationCompensation = ORIENTATIONS.get(deviceRotation); // Get the device's sensor orientation. CameraManager cameraManager = (CameraManager) activity.getSystemService(CAMERA_SERVICE); int sensorOrientation = cameraManager .getCameraCharacteristics(cameraId) .get(CameraCharacteristics.SENSOR_ORIENTATION); if (isFrontFacing) { rotationCompensation = (sensorOrientation + rotationCompensation) % 360; } else { // back-facing rotationCompensation = (sensorOrientation - rotationCompensation + 360) % 360; } return rotationCompensation; }
接著,將 media.Image
物件和旋轉度值傳送至 InputImage.fromMediaImage()
:
Kotlin
val image = InputImage.fromMediaImage(mediaImage, rotation)
Java
InputImage image = InputImage.fromMediaImage(mediaImage, rotation);
使用檔案 URI
如要透過檔案 URI 建立 InputImage
物件,請將應用程式結構定義和檔案 URI 傳遞至 InputImage.fromFilePath()
。當您利用 ACTION_GET_CONTENT
意圖提示使用者從圖片庫應用程式中選取圖片時,這項功能就非常實用。
Kotlin
val image: InputImage try { image = InputImage.fromFilePath(context, uri) } catch (e: IOException) { e.printStackTrace() }
Java
InputImage image; try { image = InputImage.fromFilePath(context, uri); } catch (IOException e) { e.printStackTrace(); }
使用 ByteBuffer
或 ByteArray
如要透過 ByteBuffer
或 ByteArray
建立 InputImage
物件,請先按照先前針對 media.Image
輸入內容所述的圖像旋轉度數計算。接著使用緩衝區或陣列來建立 InputImage
物件,並搭配圖片的高度、寬度、顏色編碼格式和旋轉度數:
Kotlin
val image = InputImage.fromByteBuffer( byteBuffer, /* image width */ 480, /* image height */ 360, rotationDegrees, InputImage.IMAGE_FORMAT_NV21 // or IMAGE_FORMAT_YV12 ) // Or: val image = InputImage.fromByteArray( byteArray, /* image width */ 480, /* image height */ 360, rotationDegrees, InputImage.IMAGE_FORMAT_NV21 // or IMAGE_FORMAT_YV12 )
Java
InputImage image = InputImage.fromByteBuffer(byteBuffer, /* image width */ 480, /* image height */ 360, rotationDegrees, InputImage.IMAGE_FORMAT_NV21 // or IMAGE_FORMAT_YV12 ); // Or: InputImage image = InputImage.fromByteArray( byteArray, /* image width */480, /* image height */360, rotation, InputImage.IMAGE_FORMAT_NV21 // or IMAGE_FORMAT_YV12 );
使用 Bitmap
如要透過 Bitmap
物件建立 InputImage
物件,請進行以下宣告:
Kotlin
val image = InputImage.fromBitmap(bitmap, 0)
Java
InputImage image = InputImage.fromBitmap(bitmap, rotationDegree);
此圖像以 Bitmap
物件表示,並以旋轉度數表示。
3. 取得 BarcodeScanner 的執行個體
Kotlin
val scanner = BarcodeScanning.getClient() // Or, to specify the formats to recognize: // val scanner = BarcodeScanning.getClient(options)
Java
BarcodeScanner scanner = BarcodeScanning.getClient(); // Or, to specify the formats to recognize: // BarcodeScanner scanner = BarcodeScanning.getClient(options);
4. 處理圖片
將圖片傳遞至process
方法:
Kotlin
val result = scanner.process(image) .addOnSuccessListener { barcodes -> // Task completed successfully // ... } .addOnFailureListener { // Task failed with an exception // ... }
Java
Task<List<Barcode>> result = scanner.process(image) .addOnSuccessListener(new OnSuccessListener<List<Barcode>>() { @Override public void onSuccess(List<Barcode> barcodes) { // Task completed successfully // ... } }) .addOnFailureListener(new OnFailureListener() { @Override public void onFailure(@NonNull Exception e) { // Task failed with an exception // ... } });
5. 從條碼取得資訊
如果條碼辨識作業成功,Barcode
物件清單就會傳遞至成功的事件監聽器。每個 Barcode
物件都代表在圖片中偵測到的條碼。針對每個條碼,您可以在輸入圖片中取得其定界座標,以及透過條碼編碼的原始資料。此外,如果條碼掃描器能夠判定條碼編碼的資料類型,您可以取得包含剖析資料的物件。
例如:
Kotlin
for (barcode in barcodes) { val bounds = barcode.boundingBox val corners = barcode.cornerPoints val rawValue = barcode.rawValue val valueType = barcode.valueType // See API reference for complete list of supported types when (valueType) { Barcode.TYPE_WIFI -> { val ssid = barcode.wifi!!.ssid val password = barcode.wifi!!.password val type = barcode.wifi!!.encryptionType } Barcode.TYPE_URL -> { val title = barcode.url!!.title val url = barcode.url!!.url } } }
Java
for (Barcode barcode: barcodes) { Rect bounds = barcode.getBoundingBox(); Point[] corners = barcode.getCornerPoints(); String rawValue = barcode.getRawValue(); int valueType = barcode.getValueType(); // See API reference for complete list of supported types switch (valueType) { case Barcode.TYPE_WIFI: String ssid = barcode.getWifi().getSsid(); String password = barcode.getWifi().getPassword(); int type = barcode.getWifi().getEncryptionType(); break; case Barcode.TYPE_URL: String title = barcode.getUrl().getTitle(); String url = barcode.getUrl().getUrl(); break; } }
改善即時成效的訣竅
如果您想在即時應用程式中掃描條碼,請按照下列指南設定最佳影格速率:
-
請不要以攝影機的原始解析度擷取輸入。在某些裝置上,以原生解析度擷取輸入會產生非常大 (1000 萬像素以上) 的圖片,因此延遲時間很短,而且對準確率沒有幫助。請改為要求攝影機偵測條碼所需的大小 (通常不超過 200 萬像素)。
如果掃描速度很重要,您可以進一步降低圖片拍攝解析度。但請注意,上述條碼大小下限下限。
如果您嘗試辨識一系列串流影格的條碼,辨識器可能會產生不同的影格結果。您應等到出現相同值的連續連續序列後,才能夠傳回正確的結果。
ITF 和 CODE-39 不支援總和檢查碼。
- 如果您使用的是
Camera
或camera2
API,請呼叫偵測工具。如果有新的影片畫面在偵測工具執行時可供使用,請捨棄該影格。如需範例,請參閱快速入門導覽課程範例應用程式中的VisionProcessorBase
類別。 - 如果您使用
CameraX
API,請確認背壓策略已設為預設值ImageAnalysis.STRATEGY_KEEP_ONLY_LATEST
。這麼做可確保系統每次只會傳送一張圖片進行分析。如果在分析器處於忙碌狀態時產生更多圖片,系統會自動捨棄這些圖片,不會排入佇列。透過呼叫 ImageProxy.close() 將所分析的圖片關閉之後,即可提供下一張最新的圖片。 - 如果您使用偵測工具的輸出內容,為輸入圖片上的圖像重疊,請先透過 ML Kit 取得結果,然後透過單一步驟算繪圖像和疊加層。每個輸入框只會向顯示途徑轉譯一次。如需範例,請參閱快速入門導覽課程範例應用程式中的
CameraSourcePreview
和GraphicOverlay
類別。 - 如果您使用 Camera2 API,請以
ImageFormat.YUV_420_888
格式擷取圖片。如果您使用的是舊版 Camera API,請以ImageFormat.NV21
格式擷取圖片。