ML Kit 為自拍區隔提供最佳化的 SDK。Selfie Segmenter 素材資源會在建構期間以靜態方式連結至您的應用程式。這會使應用程式大小增加最多 24 MB,且 API 延遲時間長度可能介於 7 毫秒到 12 毫秒,視輸入的圖片大小而定 (根據 iPhone X 的計算結果)。
立即試用
- 使用範例應用程式試試 請查看此 API 的使用範例。
事前準備
在 Podfile 中納入下列 ML Kit 程式庫:
pod 'GoogleMLKit/SegmentationSelfie', '3.2.0'
安裝或更新專案的 Pod 後,請使用 .
xcworkspace
開啟 Xcode 專案。Xcode 13.2.1 以上版本支援 ML Kit。
1. 建立 Segmenter 例項
如要對自拍圖片執行區隔,請先使用 SelfieSegmenterOptions
建立 Segmenter
例項,並視需要指定區隔設定。
區隔工具選項
分段模式
Segmenter
會在兩種模式下運作。請務必選擇符合您用途的選項。
STREAM_MODE (default)
這個模式是專為串流播放影片或相機畫面而設計。在這個模式中,分段器會利用先前影格的結果,傳回更順暢的區隔結果。
SINGLE_IMAGE_MODE (default)
這個模式是為使用相互無關的單張圖片而設計。在這個模式下,片段器會獨立處理每張圖片,避免影格出現平滑的情形。
啟用原始大小遮罩
要求分割器傳回與模型輸出大小相符的原始大小遮罩。
原始遮罩的大小 (例如 256x256) 通常小於輸入的圖片大小。
如未指定這個選項,分段器會重新調整原始遮罩的大小,以符合輸入的圖片大小。如果您要套用自訂的資源調度邏輯,或不需要重新調整資源配置,建議使用這個選項。
指定區隔工具選項:
Swift
let options = SelfieSegmenterOptions() options.segmenterMode = .singleImage options.shouldEnableRawSizeMask = true
Objective-C
MLKSelfieSegmenterOptions *options = [[MLKSelfieSegmenterOptions alloc] init]; options.segmenterMode = MLKSegmenterModeSingleImage; options.shouldEnableRawSizeMask = YES;
最後,取得 Segmenter
的例項。傳送您指定的選項:
Swift
let segmenter = Segmenter.segmenter(options: options)
Objective-C
MLKSegmenter *segmenter = [MLKSegmenter segmenterWithOptions:options];
2. 準備輸入圖片
如要區隔自拍照,請對每張圖片或影片影格執行下列步驟。
如果啟用串流模式,就必須從以下位置建立 VisionImage
物件:
CMSampleBuffer
秒。
使用 UIImage
或VisionImage
CMSampleBuffer
。
如果您使用 UIImage
,請按照下列步驟操作:
- 使用
UIImage
建立VisionImage
物件。請務必指定正確的.orientation
。Swift
let image = VisionImage(image: UIImage) visionImage.orientation = image.imageOrientation
Objective-C
MLKVisionImage *visionImage = [[MLKVisionImage alloc] initWithImage:image]; visionImage.orientation = image.imageOrientation;
如果您使用 CMSampleBuffer
,請按照下列步驟操作:
-
指定
CMSampleBuffer
。如何取得圖片方向:
Swift
func imageOrientation( deviceOrientation: UIDeviceOrientation, cameraPosition: AVCaptureDevice.Position ) -> UIImage.Orientation { switch deviceOrientation { case .portrait: return cameraPosition == .front ? .leftMirrored : .right case .landscapeLeft: return cameraPosition == .front ? .downMirrored : .up case .portraitUpsideDown: return cameraPosition == .front ? .rightMirrored : .left case .landscapeRight: return cameraPosition == .front ? .upMirrored : .down case .faceDown, .faceUp, .unknown: return .up } }
Objective-C
- (UIImageOrientation) imageOrientationFromDeviceOrientation:(UIDeviceOrientation)deviceOrientation cameraPosition:(AVCaptureDevicePosition)cameraPosition { switch (deviceOrientation) { case UIDeviceOrientationPortrait: return cameraPosition == AVCaptureDevicePositionFront ? UIImageOrientationLeftMirrored : UIImageOrientationRight; case UIDeviceOrientationLandscapeLeft: return cameraPosition == AVCaptureDevicePositionFront ? UIImageOrientationDownMirrored : UIImageOrientationUp; case UIDeviceOrientationPortraitUpsideDown: return cameraPosition == AVCaptureDevicePositionFront ? UIImageOrientationRightMirrored : UIImageOrientationLeft; case UIDeviceOrientationLandscapeRight: return cameraPosition == AVCaptureDevicePositionFront ? UIImageOrientationUpMirrored : UIImageOrientationDown; case UIDeviceOrientationUnknown: case UIDeviceOrientationFaceUp: case UIDeviceOrientationFaceDown: return UIImageOrientationUp; } }
- 使用
VisionImage
CMSampleBuffer
物件和方向:Swift
let image = VisionImage(buffer: sampleBuffer) image.orientation = imageOrientation( deviceOrientation: UIDevice.current.orientation, cameraPosition: cameraPosition)
Objective-C
MLKVisionImage *image = [[MLKVisionImage alloc] initWithBuffer:sampleBuffer]; image.orientation = [self imageOrientationFromDeviceOrientation:UIDevice.currentDevice.orientation cameraPosition:cameraPosition];
3. 處理圖片
將 VisionImage
物件傳遞至 Segmenter
的其中一種圖片處理方法。您可以使用非同步 process(image:)
方法或同步的 results(in:)
方法。
如何同步對自拍圖片進行區隔:
Swift
var mask: [SegmentationMask] do { mask = try segmenter.results(in: image) } catch let error { print("Failed to perform segmentation with error: \(error.localizedDescription).") return } // Success. Get a segmentation mask here.
Objective-C
NSError *error; MLKSegmentationMask *mask = [segmenter resultsInImage:image error:&error]; if (error != nil) { // Error. return; } // Success. Get a segmentation mask here.
如何以非同步方式對自拍圖片執行區隔:
Swift
segmenter.process(image) { mask, error in guard error == nil else { // Error. return } // Success. Get a segmentation mask here.
Objective-C
[segmenter processImage:image completion:^(MLKSegmentationMask * _Nullable mask, NSError * _Nullable error) { if (error != nil) { // Error. return; } // Success. Get a segmentation mask here. }];
4. 取得區隔遮罩
您可以透過下列方式取得區隔結果:
Swift
let maskWidth = CVPixelBufferGetWidth(mask.buffer) let maskHeight = CVPixelBufferGetHeight(mask.buffer) CVPixelBufferLockBaseAddress(mask.buffer, CVPixelBufferLockFlags.readOnly) let maskBytesPerRow = CVPixelBufferGetBytesPerRow(mask.buffer) var maskAddress = CVPixelBufferGetBaseAddress(mask.buffer)!.bindMemory( to: Float32.self, capacity: maskBytesPerRow * maskHeight) for _ in 0...(maskHeight - 1) { for col in 0...(maskWidth - 1) { // Gets the confidence of the pixel in the mask being in the foreground. let foregroundConfidence: Float32 = maskAddress[col] } maskAddress += maskBytesPerRow / MemoryLayout<Float32>.size }
Objective-C
size_t width = CVPixelBufferGetWidth(mask.buffer); size_t height = CVPixelBufferGetHeight(mask.buffer); CVPixelBufferLockBaseAddress(mask.buffer, kCVPixelBufferLock_ReadOnly); size_t maskBytesPerRow = CVPixelBufferGetBytesPerRow(mask.buffer); float *maskAddress = (float *)CVPixelBufferGetBaseAddress(mask.buffer); for (int row = 0; row < height; ++row) { for (int col = 0; col < width; ++col) { // Gets the confidence of the pixel in the mask being in the foreground. float foregroundConfidence = maskAddress[col]; } maskAddress += maskBytesPerRow / sizeof(float); }
有關如何使用區隔結果的完整範例,請參閱 ML Kit 快速入門導覽課程範例。
提升成效的訣竅
結果的品質取決於輸入圖片的品質:
- 為了讓 ML Kit 取得準確的區隔結果,圖片至少應為 256x256 像素。
- 如果您在即時應用程式中執行自拍區隔,不妨一併考量輸入圖片的整體尺寸。系統能快速處理較小的圖片,因此為了縮短延遲時間,縮短延遲時間,請謹記上述解析度規定,並盡可能讓相片主體能容納所有圖片。
- 圖像對焦品質不佳也可能會影響準確度。如果您未能取得可接受的結果,請要求使用者重新拍攝圖片。
如要在即時應用程式中使用區隔,請遵循下列準則,以便達到最佳的影格速率:
- 使用
stream
分段模式。 - 建議以較低的解析度拍攝圖片。不過,也請留意這個 API 的圖片尺寸規定。
- 如要處理影片影格,請使用區隔器的
results(in:)
同步 API。從 AVCaptureVideoDataOutputSampleBufferDelegate 的 captureOutput(_, didOutput:from:) 函式中呼叫這個方法,即可同步取得指定影片影格的結果。將 AVCaptureVideoDataOutput 的 alwaysDiscardsLateVideoFrames 為 true,以限制對片段器的呼叫。在區隔工具執行期間,如有新的影片影格可供使用,系統會捨棄影片影格。 - 如果使用分段器的輸出內容來重疊輸入圖像上的圖像,請先從 ML Kit 取得結果,然後透過一個步驟算繪圖像和重疊。這樣一來,每個處理的輸入影格都只能轉譯一次到顯示介面一次。如需範例,請參閱 ML Kit 快速入門導覽課程範例中的 previewOverlayView 和 CameraViewController 類別。