iOS Положение Обнаружения Лица

Я пытался сделать обнаружение лица разными способами, сейчас я экспериментирую с камерой Apple's Sqaure Cam, переведенной на Swift. https://github.com/wayn/SquareCam-Swift

То, что я хочу сделать, это использовать координаты из CIDetector, чтобы я мог использовать это положение для наложения слоя на левый глаз, правый глаз или рот. Но когда я использую координаты, предоставленные CIDetector, слой, который я хочу добавить к элементам лица, не расположен правильно. Моя проблема именно с этим кодом. Так как он, кажется, обрабатывает ориентацию и вращение, чтобы правильно расположить красную рамку вокруг лица.

Вот код:

func drawFaceBoxesForFeatures(features : NSArray, clap : CGRect, orientation : UIDeviceOrientation) {



        let sublayers : NSArray = previewLayer.sublayers!
        let sublayersCount : Int = sublayers.count
        var currentSublayer : Int = 0
        //        var featuresCount : Int = features.count
        var currentFeature : Int = 0

        CATransaction.begin()
        CATransaction.setValue(kCFBooleanTrue, forKey: kCATransactionDisableActions)

        // hide all the face layers
        for layer in sublayers as! [CALayer] {
            if (layer.name != nil && layer.name == "FaceLayer") {
                layer.hidden = true
            }
        }

        if ( features.count == 0 || !detectFaces ) {
            CATransaction.commit()
            return
        }

        let parentFrameSize : CGSize = previewView.frame.size
        let gravity : NSString = previewLayer.videoGravity

        let previewBox : CGRect = ViewController.videoPreviewBoxForGravity(gravity, frameSize: parentFrameSize, apertureSize: clap.size)




        for ff in features as! [CIFaceFeature] {
            // set text on label
            var x : CGFloat = 0.0, y : CGFloat = 0.0
            if ff.hasLeftEyePosition {
                x = ff.leftEyePosition.x
                y = ff.leftEyePosition.y
                eyeLeftLabel.text = ff.leftEyeClosed ? "(\(x) \(y))" : "(\(x) \(y))" + ""


            }

            if ff.hasRightEyePosition {
                x = ff.rightEyePosition.x
                y = ff.rightEyePosition.y
                eyeRightLabel.text = ff.rightEyeClosed ? "(\(x) \(y))" : "(\(x) \(y))" + ""


            }

            if ff.hasMouthPosition {
                x = ff.mouthPosition.x
                y = ff.mouthPosition.y
                mouthLabel.text = ff.hasSmile ? "\(x) \(y)" + "" : "(\(x) \(y))"
            }

            // find the correct position for the square layer within the previewLayer
            // the feature box originates in the bottom left of the video frame.
            // (Bottom right if mirroring is turned on)
            var faceRect : CGRect = ff.bounds

            // flip preview width and height
            var temp : CGFloat = faceRect.width
            faceRect.size.width = faceRect.height
            faceRect.size.height = temp
            temp = faceRect.origin.x
            faceRect.origin.x = faceRect.origin.y
            faceRect.origin.y = temp
            // scale coordinates so they fit in the preview box, which may be scaled
            let widthScaleBy = previewBox.size.width / clap.size.height
            let heightScaleBy = previewBox.size.height / clap.size.width
            faceRect.size.width *= widthScaleBy
            faceRect.size.height *= heightScaleBy
            faceRect.origin.x *= widthScaleBy
            faceRect.origin.y *= heightScaleBy


            faceRect = CGRectOffset(faceRect, previewBox.origin.x, previewBox.origin.y)
            var featureLayer : CALayer? = nil
            // re-use an existing layer if possible
            while (featureLayer == nil) && (currentSublayer < sublayersCount) {

                let currentLayer : CALayer = sublayers.objectAtIndex(currentSublayer++) as! CALayer

                if currentLayer.name == nil {
                    continue
                }
                let name : NSString = currentLayer.name!
                if name.isEqualToString("FaceLayer") {
                    featureLayer = currentLayer;
                    currentLayer.hidden = false
                }
            }

            // create a new one if necessary
            if featureLayer == nil {
                featureLayer = CALayer()
                featureLayer?.contents = square.CGImage
                featureLayer?.name = "FaceLayer"
                previewLayer.addSublayer(featureLayer!)
            }

            featureLayer?.frame = faceRect

            currentFeature++
        }

        CATransaction.commit()
    }
`

Какие шаги мне нужно предпринять, чтобы правильно наложить слои наложения на глаза и рот?

1 ответ

Я сталкиваюсь с этой проблемой, и я решаю ее с помощью изменения видео-гравитации на AVLayerVideoGravityResize

   previewLayer?.videoGravity = AVLayerVideoGravityResize 
Другие вопросы по тегам