The simplest solution for reading face image file, and converting to face landmark description.
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
import Cocoa | |
import Vision | |
class ViewController: NSViewController { | |
@IBOutlet weak var desc: NSTextField! | |
@IBOutlet weak var path: NSTextField! | |
let DEFAULT_PATH = "/Users/kohry/Documents/face/" | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
path.stringValue = DEFAULT_PATH | |
// Do any additional setup after loading the view. | |
} | |
override var representedObject: Any? { | |
didSet { | |
// Update the view, if already loaded. | |
} | |
} | |
@IBAction func readImageFiles(_ sender: Any) { | |
//open file with file manager | |
let fileManager = FileManager.default | |
let contents = try! fileManager.contentsOfDirectory(atPath: path.stringValue) | |
contents.forEach { (fileName) in | |
let ciimage = CIImage(contentsOf: URL(fileURLWithPath: path.stringValue + fileName)) | |
let context = CIContext(options: nil) | |
let cgimage = context.createCGImage(ciimage!, from: ciimage!.extent) | |
analyze(cgimage!, fileName: fileName) | |
} | |
} | |
func analyze(_ image: CGImage, fileName: String) { | |
let faceRequest = VNDetectFaceLandmarksRequest{ (req, error) in | |
if let results = req.results as? [VNFaceObservation] { | |
for observation in results { | |
print(fileName) | |
print(observation.landmarks?.allPoints?.normalizedPoints) | |
let allPointsInString = observation.landmarks?.allPoints?.normalizedPoints | |
self.desc.stringValue = self.desc.stringValue + String(describing: allPointsInString) + "\n" | |
} | |
} | |
} | |
let imageRequestHandler = VNImageRequestHandler(cgImage: image, options: [:]) | |
try? imageRequestHandler.perform([faceRequest]) | |
} | |
} |
'모바일 > iOS' 카테고리의 다른 글
swift4 reflection (0) | 2018.08.25 |
---|---|
EXC_BAD_ACCESS when using chart library in swift 4 (0) | 2018.08.23 |
Swift3 - NSFetchRequest 관련 수정 및 수정가이드 사이트 (0) | 2016.11.26 |
Swift3 - URL 로딩 웹뷰 코드조각 (0) | 2016.11.26 |
iOS IPv6 관련 앱 등록 거부와 무선랜 구입 (4) | 2016.10.09 |