├── Parameters ├── conv1_W.bin ├── conv1_b.bin ├── conv2_W.bin ├── conv2_b.bin ├── conv3_W.bin ├── conv3_b.bin ├── conv4_W.bin ├── conv4_b.bin ├── conv5_W.bin ├── conv5_b.bin ├── conv6_W.bin ├── conv6_b.bin ├── conv7_W.bin ├── conv7_b.bin ├── conv8_W.bin ├── conv8_b.bin ├── conv9_W.bin └── conv9_b.bin ├── README.md ├── YOLO.jpg ├── YOLO.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Guigu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Guigu.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── YOLO.xcscheme │ └── xcschememanagement.plist ├── YOLO ├── AppDelegate.swift ├── Array+Extensions.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── BoundingBox.swift ├── CameraViewController.swift ├── Info.plist ├── MPSImage+Floats.swift ├── Math.swift ├── SlimMPSCNN.swift ├── VideoCapture.swift └── YOLO.swift └── yolo2metal.py /Parameters/conv1_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv1_W.bin -------------------------------------------------------------------------------- /Parameters/conv1_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv1_b.bin -------------------------------------------------------------------------------- /Parameters/conv2_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv2_W.bin -------------------------------------------------------------------------------- /Parameters/conv2_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv2_b.bin -------------------------------------------------------------------------------- /Parameters/conv3_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv3_W.bin -------------------------------------------------------------------------------- /Parameters/conv3_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv3_b.bin -------------------------------------------------------------------------------- /Parameters/conv4_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv4_W.bin -------------------------------------------------------------------------------- /Parameters/conv4_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv4_b.bin -------------------------------------------------------------------------------- /Parameters/conv5_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv5_W.bin -------------------------------------------------------------------------------- /Parameters/conv5_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv5_b.bin -------------------------------------------------------------------------------- /Parameters/conv6_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv6_W.bin -------------------------------------------------------------------------------- /Parameters/conv6_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv6_b.bin -------------------------------------------------------------------------------- /Parameters/conv7_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv7_W.bin -------------------------------------------------------------------------------- /Parameters/conv7_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv7_b.bin -------------------------------------------------------------------------------- /Parameters/conv8_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv8_W.bin -------------------------------------------------------------------------------- /Parameters/conv8_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv8_b.bin -------------------------------------------------------------------------------- /Parameters/conv9_W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv9_W.bin -------------------------------------------------------------------------------- /Parameters/conv9_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/Parameters/conv9_b.bin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/README.md -------------------------------------------------------------------------------- /YOLO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.jpg -------------------------------------------------------------------------------- /YOLO.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YOLO.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YOLO.xcodeproj/project.xcworkspace/xcuserdata/Guigu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.xcodeproj/project.xcworkspace/xcuserdata/Guigu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YOLO.xcodeproj/xcuserdata/Guigu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.xcodeproj/xcuserdata/Guigu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /YOLO.xcodeproj/xcuserdata/Guigu.xcuserdatad/xcschemes/YOLO.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.xcodeproj/xcuserdata/Guigu.xcuserdatad/xcschemes/YOLO.xcscheme -------------------------------------------------------------------------------- /YOLO.xcodeproj/xcuserdata/Guigu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO.xcodeproj/xcuserdata/Guigu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YOLO/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/AppDelegate.swift -------------------------------------------------------------------------------- /YOLO/Array+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/Array+Extensions.swift -------------------------------------------------------------------------------- /YOLO/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YOLO/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YOLO/BoundingBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/BoundingBox.swift -------------------------------------------------------------------------------- /YOLO/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/CameraViewController.swift -------------------------------------------------------------------------------- /YOLO/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/Info.plist -------------------------------------------------------------------------------- /YOLO/MPSImage+Floats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/MPSImage+Floats.swift -------------------------------------------------------------------------------- /YOLO/Math.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/Math.swift -------------------------------------------------------------------------------- /YOLO/SlimMPSCNN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/SlimMPSCNN.swift -------------------------------------------------------------------------------- /YOLO/VideoCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/VideoCapture.swift -------------------------------------------------------------------------------- /YOLO/YOLO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/YOLO/YOLO.swift -------------------------------------------------------------------------------- /yolo2metal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revo-Future/YOLO-iOS/HEAD/yolo2metal.py --------------------------------------------------------------------------------