Avatar
あーようやく理解できました。layerRectConvertedの引数fromMetadataOutputRectの意味。 AVMetadataObjectのrectOfInterestと同じでpreviewLayerの中で範囲指定するって意味なんですね。 appleのVisionのtrackingのサンプルでは下記のように指定して全面指定をしてました。 let videoPreviewRect = previewLayer.layerRectConverted(fromMetadataOutputRect: CGRect(x: 0, y: 0, width: 1, height: 1)) https://developer.apple.com/documentation/vision/tracking_the_user_s_face_in_real_time 他のVisionサンプルだとfromMetadataOutputRectにVNDetectedObjectObservationのboundingBox渡している例よく見てました。