Created
October 21, 2018 16:32
-
-
Save fredriccliver/a407296b912cacf7bc3b1baddb32c4af to your computer and use it in GitHub Desktop.
xcode-face-detection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// face-detection | |
// | |
// Created by on 22/10/2018. | |
// Copyright © 2018 . All rights reserved. | |
// | |
import UIKit | |
import Vision | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
guard let image = UIImage(named: "img3") else | |
{return} | |
let imageView = UIImageView(image: image) | |
imageView.contentMode = .scaleAspectFit | |
let scaledHeight = view.frame.width / image.size.width * | |
image.size.height | |
imageView.frame = CGRect(x: 0, y: 0, width: view.frame.width, height: 280) | |
imageView.backgroundColor = .blue | |
view.addSubview(imageView) | |
let request = VNDetectFaceRectanglesRequest { (req, err) in | |
if let err = err { | |
print("Failed to detect faces:", err) | |
return | |
} | |
req.results?.forEach({ (res) in | |
DispatchQueue.main.async { | |
guard let faceObservation = res as? | |
VNFaceObservation else{return} | |
let x = self.view.frame.width * faceObservation.boundingBox.origin.x | |
let height = scaledHeight * faceObservation.boundingBox.height | |
let y = scaledHeight * (1 - faceObservation.boundingBox.origin.y) - height | |
let width = self.view.frame.width * faceObservation.boundingBox.width | |
let redView = UIView() | |
redView.backgroundColor = .red | |
redView.alpha = 0.4 | |
redView.frame = CGRect(x: x, y: y, width: width, height: height) | |
self.view.addSubview(redView) | |
print(faceObservation.boundingBox) | |
} | |
}) | |
} | |
guard let cgImage = image.cgImage else {return} | |
DispatchQueue.global(qos: .background).async { | |
let handler = VNImageRequestHandler(cgImage: cgImage, options: [:]) | |
do { | |
try handler.perform([request]) | |
} catch let reqErr { | |
print("Failed to perform request:", reqErr) | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment