-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from SimformSolutionsPvtLtd/feature/UNT-T21755
feature/UNT-T21755:- Tracking Body Posture for sitting position
- Loading branch information
Showing
17 changed files
with
996 additions
and
262 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// | ||
// AVDetailsVC.swift | ||
// ios12 Sampler | ||
// | ||
// Created by Dhruvil Vora on 29/02/24. | ||
// Copyright © 2024 Testing. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
class AVDetailsVC: BaseCameraVC { | ||
|
||
@IBOutlet weak var cameraView: UIView! | ||
|
||
override func viewDidLoad() { | ||
super.viewDidLoad() | ||
// Do any additional setup after loading the view. | ||
cameraView.layer.addSublayer(prevLayer!) | ||
} | ||
|
||
override func viewWillAppear(_ animated: Bool) { | ||
super.viewWillAppear(animated) | ||
} | ||
|
||
override func viewWillDisappear(_ animated: Bool) { | ||
super.viewWillDisappear(animated) | ||
} | ||
|
||
@IBAction func btnLiveImageFilterClicked(_ sender: UIButton) { | ||
let vc = self.storyboard?.instantiateViewController(withIdentifier: "ARImageDetectorVC") as? ARImageDetectorVC | ||
self.navigationController?.pushViewController(vc!, animated: true) | ||
} | ||
|
||
@IBAction func btnSurfaceDetectionClicked(_ sender: UIButton) { | ||
let vc = self.storyboard?.instantiateViewController(withIdentifier: "ARSurfaceDetectionVC") as? ARSurfaceDetectionVC | ||
self.navigationController?.pushViewController(vc!, animated: true) | ||
} | ||
|
||
@IBAction func btnSittingPostureClicked(_ sender: UIButton) { | ||
let vc = self.storyboard?.instantiateViewController(withIdentifier: "ARPostureDetection") as? ARPostureDetection | ||
self.navigationController?.pushViewController(vc!, animated: true) | ||
} | ||
} |
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
Oops, something went wrong.