├── README.md ├── Yolov8-RealTime-iOS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── majimadaisuke.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Yolov8-RealTime-iOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift ├── ViewController.swift └── yolov8s.mlpackage │ ├── Data │ └── com.apple.CoreML │ │ └── model.mlmodel │ └── Manifest.json ├── Yolov8-RealTime-iOSTests └── Yolov8_RealTime_iOSTests.swift └── Yolov8-RealTime-iOSUITests ├── Yolov8_RealTime_iOSUITests.swift └── Yolov8_RealTime_iOSUITestsLaunchTests.swift /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS.xcodeproj/xcuserdata/majimadaisuke.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS.xcodeproj/xcuserdata/majimadaisuke.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/Info.plist -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/SceneDelegate.swift -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/ViewController.swift -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/yolov8s.mlpackage/Data/com.apple.CoreML/model.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/yolov8s.mlpackage/Data/com.apple.CoreML/model.mlmodel -------------------------------------------------------------------------------- /Yolov8-RealTime-iOS/yolov8s.mlpackage/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOS/yolov8s.mlpackage/Manifest.json -------------------------------------------------------------------------------- /Yolov8-RealTime-iOSTests/Yolov8_RealTime_iOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOSTests/Yolov8_RealTime_iOSTests.swift -------------------------------------------------------------------------------- /Yolov8-RealTime-iOSUITests/Yolov8_RealTime_iOSUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOSUITests/Yolov8_RealTime_iOSUITests.swift -------------------------------------------------------------------------------- /Yolov8-RealTime-iOSUITests/Yolov8_RealTime_iOSUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/Yolov8-RealTime-iOS/HEAD/Yolov8-RealTime-iOSUITests/Yolov8_RealTime_iOSUITestsLaunchTests.swift --------------------------------------------------------------------------------