├── Hand Timer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── rudrajikadra.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── rudrajikadra.xcuserdatad │ └── xcschemes │ ├── Hand Timer.xcscheme │ └── xcschememanagement.plist ├── Hand Timer ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── hand.mlmodel └── README.md /Hand Timer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Hand Timer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hand Timer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Hand Timer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Hand Timer.xcodeproj/project.xcworkspace/xcuserdata/rudrajikadra.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/project.xcworkspace/xcuserdata/rudrajikadra.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Hand Timer.xcodeproj/xcuserdata/rudrajikadra.xcuserdatad/xcschemes/Hand Timer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/xcuserdata/rudrajikadra.xcuserdatad/xcschemes/Hand Timer.xcscheme -------------------------------------------------------------------------------- /Hand Timer.xcodeproj/xcuserdata/rudrajikadra.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer.xcodeproj/xcuserdata/rudrajikadra.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Hand Timer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/AppDelegate.swift -------------------------------------------------------------------------------- /Hand Timer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Hand Timer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Hand Timer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Hand Timer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/Info.plist -------------------------------------------------------------------------------- /Hand Timer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/ViewController.swift -------------------------------------------------------------------------------- /Hand Timer/hand.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/Hand Timer/hand.mlmodel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrajikadra/Hand-Timer-CoreML-Custom-Vision-ML-Model-iOS-Xcode/HEAD/README.md --------------------------------------------------------------------------------