SlideShare a Scribd company logo
1 of 55
Download to read offline
•
•
•
👉
•
🤔
🤔
•
🤔
🤔
•
🤔
•
🤔
🤔
•
🤔
•
•
🤔
🤔
•
🤔
•
👉
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
🙆
🙅
•
🙆
🙅
👉
•
🙆
🙅
👉
🙅
🤔
•
•
•
•
🙆
🤔
🙅
•
🙆
🤔
🙅
👉
•
🙆
🤔
🙅
👉
🙅
•
•
•
•
•
•
•
🙆
🙆
🙅
🙅
•
🙆
🙆
🙆
🙆
🙅
//
let captureSession = AVCaptureSession()
//
captureSession.sessionPreset = .hd1280x720
//
let captureSession = AVCaptureSession()
//
captureSession.sessionPreset = .hd1280x720
//
let captureSession = AVCaptureSession()
//
captureSession.sessionPreset = .hd1280x720
//
let camera = AVCaptureDevice.default(
.builtInWideAngleCamera,
for: .video,
position: .back)!
//
let deviceInput
= try! AVCaptureDeviceInput(device: camera)
captureSession.addInput(deviceInput)
//
let camera = AVCaptureDevice.default(
.builtInWideAngleCamera,
for: .video,
position: .back)!
//
let deviceInput
= try! AVCaptureDeviceInput(device: camera)
captureSession.addInput(deviceInput)
//
let videoOutput =
AVCaptureVideoDataOutput()
//
let videoQueue =
DispatchQueue(label: "VideoQueue")
//
videoOutput.setSampleBufferDelegate(self,
queue: videoQueue)
captureSession.addOutput(videoDataOutput)
//
let videoOutput =
AVCaptureVideoDataOutput()
//
let videoQueue =
DispatchQueue(label: "VideoQueue")
//
videoOutput.setSampleBufferDelegate(self,
queue: videoQueue)
captureSession.addOutput(videoDataOutput)
//
try! camera.lockForConfiguration()
camera.videoZoomFactor = 1.2
camera.autoFocusRangeRestriction = .near
camera.unlockForConfiguration()
//
let previewLayer
= AVCaptureVideoPreviewLayer(
session: captureSession)
previewLayer.videoGravity
= .resizeAspectFill
// view: View
previewLayer.frame = view.bounds
view.layer.addSublayer(previewLayer)
//
var request: VNRecognizeTextRequest!
request = VNRecognizeTextRequest { _, _ in
…
}
//
request.usesLanguageCorrection = false
request.recognitionLevel = .accurate
request.regionOfInterest
= CGRect(x: 0, y: 0.8,
width: 1, height: 0.2)
•
👉
•
•
👉
•
👉
W=1
H=1
0.2
(0,0)
(0,0.8)
•
•
•
//
captureSession.startRunning()
//
captureSession.startRunning()
//AVCaptureVideoDataOutputSampleBufferDelegate
func captureOutput(_ output: AVCaptureOutput,
didOutput sampleBuffer: CMSampleBuffer,
from connection: AVCaptureConnection)
//
captureSession.startRunning()
//AVCaptureVideoDataOutputSampleBufferDelegate
func captureOutput(_ output: AVCaptureOutput,
didOutput sampleBuffer: CMSampleBuffer,
from connection: AVCaptureConnection)
// Vision
let pixelBuffer =
CMSampleBufferGetImageBuffer(sampleBuffer)!
//
let requestHandler =
VNImageRequestHandler(
cvPixelBuffer: pixelBuffer,
orientation: .right, options: [:])
//
try! requestHandler.perform([request])
request = VNRecognizeTextRequest
{ request, error in
//
}
//
try! requestHandler.perform([request])
request = VNRecognizeTextRequest
{ request, error in
//
}
//
try! requestHandler.perform([request])
let results = request.results
as! [VNRecognizedTextObservation]
results.forEach { result in
guard let candidate =
result.topCandidates(1).first
else { return }
let text = candidate.string
…
}
let results = request.results
as! [VNRecognizedTextObservation]
results.forEach { result in
guard let candidate =
result.topCandidates(1).first
else { return }
let text = candidate.string
…
}
let results = request.results
as! [VNRecognizedTextObservation]
results.forEach { result in
guard let candidate =
result.topCandidates(1).first
else { return }
let text = candidate.string
…
}
let pattern =
#"w{4}[ ]w{4}[ ]w{4}[ ]w{4}"#
guard let range = text.range(of: pattern,
options: .regularExpression)
else { return }
//
// o => 0, l => 1, s => 5, B => 8, etc.
…
//
…
•
•
•
•
•
•
•
•
•
•
•
•
👉
Vision

More Related Content

Similar to Vision

Django’s nasal passage
Django’s nasal passageDjango’s nasal passage
Django’s nasal passage
Erik Rose
 
Installing hadoophivederby on_centos
Installing hadoophivederby on_centosInstalling hadoophivederby on_centos
Installing hadoophivederby on_centos
James Jara
 

Similar to Vision (13)

Django’s nasal passage
Django’s nasal passageDjango’s nasal passage
Django’s nasal passage
 
Vagrant for real
Vagrant for realVagrant for real
Vagrant for real
 
Video.js - How to build and HTML5 Video Player
Video.js - How to build and HTML5 Video PlayerVideo.js - How to build and HTML5 Video Player
Video.js - How to build and HTML5 Video Player
 
Browsers with Wings
Browsers with WingsBrowsers with Wings
Browsers with Wings
 
PWA 與 Service Worker
PWA 與 Service WorkerPWA 與 Service Worker
PWA 與 Service Worker
 
HTML5: Markup Evolved
HTML5: Markup EvolvedHTML5: Markup Evolved
HTML5: Markup Evolved
 
Installing hadoophivederby on_centos
Installing hadoophivederby on_centosInstalling hadoophivederby on_centos
Installing hadoophivederby on_centos
 
Userstories a practical intro
Userstories a practical introUserstories a practical intro
Userstories a practical intro
 
Troubleshooting JIRA & Confluence
Troubleshooting JIRA & ConfluenceTroubleshooting JIRA & Confluence
Troubleshooting JIRA & Confluence
 
Vagrant WordCamp Hamilton
Vagrant  WordCamp HamiltonVagrant  WordCamp Hamilton
Vagrant WordCamp Hamilton
 
infra-as-code
infra-as-codeinfra-as-code
infra-as-code
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?
 
Keeping Your Kubernetes Cluster Secure
Keeping Your Kubernetes Cluster SecureKeeping Your Kubernetes Cluster Secure
Keeping Your Kubernetes Cluster Secure
 

More from mike-neko (9)

Unity x CoreML
Unity x CoreMLUnity x CoreML
Unity x CoreML
 
SiriKit
SiriKitSiriKit
SiriKit
 
ML@WWDC2018
ML@WWDC2018ML@WWDC2018
ML@WWDC2018
 
ARKit2
ARKit2ARKit2
ARKit2
 
Swiftとメモリ管理
Swiftとメモリ管理Swiftとメモリ管理
Swiftとメモリ管理
 
進化するCoreML
進化するCoreML進化するCoreML
進化するCoreML
 
CoreMLでリアルタイム画風変換
CoreMLでリアルタイム画風変換CoreMLでリアルタイム画風変換
CoreMLでリアルタイム画風変換
 
ARKit
ARKitARKit
ARKit
 
MetalでTessellation
MetalでTessellationMetalでTessellation
MetalでTessellation
 

Recently uploaded

Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 

Recently uploaded (20)

FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 

Vision