6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

マスク未着用検知iOSアプリをVisionフレームワークで実装する

Last updated at Posted at 2020-07-19

iPadやiPhoneのカメラ・フレームを分析して、マスクを着用していない人を検知できるアプリをかんたんにつくることができます。

GitHubでアプリ公開しています。
https://github.com/john-rocky/MaskPlease
お店の入り口などに置いてください。
スクリーンショット 2020-07-21 0.56.51.png

マスク着用の判定方法

マスクを着用していない人がいるかを特定するためには、鼻や口がうつっているかどうかをたしかめればいいです。

Visionフレームワークの顔検出機能は、マスクを着用していると検知できません。
ゆえに、Visionで顔を検出できるということは、その顔はマスクをつけていないといえます。
スクリーンショット 2020-07-21 1.01.50.png スクリーンショット 2020-07-21 1.04.22.png

VNDetectFaceRectanglesRequestにカメラの映像を1フレームずつ渡します。

let detectFaceRequest = VNDetectFaceRectanglesRequest(completionHandler:self.processVisionRequestResults)
func captureOutput(_ output: AVCaptureOutput, didOutput sampleBuffer: CMSampleBuffer, from connection: AVCaptureConnection) {
    guard let pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer) else {
                 return
             }
    let imageRequestHandler = VNImageRequestHandler(cvPixelBuffer: pixelBuffer, orientation: exifOrientation, options: [:])
         do {
             try imageRequestHandler.perform(self.requests)
         } catch {
             print(error)
         }
}

顔がうつっていればアラートを出す

VNFaceObservationのresultがあれば、顔がうつっているので、「マスクをつけてください」というアラートをだします。

guard let observation = results.first as? VNFaceObservation else {
          //顔の結果なし
          imageView.image = UIImage(name:"thanksForWearing")
          }
//顔の結果あり      
imageView.image = UIImage(name:"pleaseWearing")

スクリーンショット 2020-05-13 2.06.02.png スクリーンショット 2020-05-13 2.06.50.png

AVSpeechSynthesizerを使うと、音声で呼びかけてくれます。

ViewController.swift
let talker = AVSpeechSynthesizer()
let utterance = AVSpeechUtterance(string: NSLocalizedString("Please wear a mask.", comment: "") )
utterance.voice = AVSpeechSynthesisVoice(language: NSLocalizedString("en-US", comment: ""))
talker.speak(utterance)

VNDetectFaceObservationは顔を囲む四角形の座標もくれます。
カメラ画像に「マスク未着用」の四角警告をオーバーラップさせると、アプリがより監視してるテイストになります。

機械学習系の情報を発信しています。
https://twitter.com/JackdeS11

rockyshikoku@gmail.com

6
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?