This file contains hidden or 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
| class SavedSpecialistModel{ | |
| final String? documentId; | |
| final String? name; | |
| final String? image; | |
| ..................... | |
| } | |
This file contains hidden or 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 AVFoundation | |
| import UIKit | |
| import Vision | |
| class LiveFeedViewController: UIViewController { | |
| private let captureSession = AVCaptureSession() | |
| private lazy var previewLayer = AVCaptureVideoPreviewLayer(session: self.captureSession) | |
| private let videoDataOutput = AVCaptureVideoDataOutput() |