├── AppDelegate.h ├── AppDelegate.mm ├── README.md ├── RunModel-Info.plist ├── RunModelViewController.h ├── RunModelViewController.mm ├── RunModelViewController.xib ├── data ├── grace_hopper.jpg ├── labby.jpg ├── labwithkid.jpg ├── mydesk.jpg ├── obamafunny.jpg ├── quantized_tiny-yolo-voc.pb ├── quantized_tiny-yolo.pb ├── tfod_test.jpg └── yolo_labels.txt ├── ios_image_load.h ├── ios_image_load.mm ├── main.mm ├── tf_ios_makefile_example.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── jeffmbair.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jeffmbair.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── tf_ios_makefile_example.xcscheme │ └── xcschememanagement.plist └── yolo2tfios.png /AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/AppDelegate.h -------------------------------------------------------------------------------- /AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/AppDelegate.mm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/README.md -------------------------------------------------------------------------------- /RunModel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/RunModel-Info.plist -------------------------------------------------------------------------------- /RunModelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/RunModelViewController.h -------------------------------------------------------------------------------- /RunModelViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/RunModelViewController.mm -------------------------------------------------------------------------------- /RunModelViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/RunModelViewController.xib -------------------------------------------------------------------------------- /data/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/grace_hopper.jpg -------------------------------------------------------------------------------- /data/labby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/labby.jpg -------------------------------------------------------------------------------- /data/labwithkid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/labwithkid.jpg -------------------------------------------------------------------------------- /data/mydesk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/mydesk.jpg -------------------------------------------------------------------------------- /data/obamafunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/obamafunny.jpg -------------------------------------------------------------------------------- /data/quantized_tiny-yolo-voc.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/quantized_tiny-yolo-voc.pb -------------------------------------------------------------------------------- /data/quantized_tiny-yolo.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/quantized_tiny-yolo.pb -------------------------------------------------------------------------------- /data/tfod_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/tfod_test.jpg -------------------------------------------------------------------------------- /data/yolo_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/data/yolo_labels.txt -------------------------------------------------------------------------------- /ios_image_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/ios_image_load.h -------------------------------------------------------------------------------- /ios_image_load.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/ios_image_load.mm -------------------------------------------------------------------------------- /main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/main.mm -------------------------------------------------------------------------------- /tf_ios_makefile_example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/tf_ios_makefile_example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tf_ios_makefile_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/tf_ios_makefile_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tf_ios_makefile_example.xcodeproj/project.xcworkspace/xcuserdata/jeffmbair.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/tf_ios_makefile_example.xcodeproj/project.xcworkspace/xcuserdata/jeffmbair.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tf_ios_makefile_example.xcodeproj/xcuserdata/jeffmbair.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/tf_ios_makefile_example.xcodeproj/xcuserdata/jeffmbair.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /tf_ios_makefile_example.xcodeproj/xcuserdata/jeffmbair.xcuserdatad/xcschemes/tf_ios_makefile_example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/tf_ios_makefile_example.xcodeproj/xcuserdata/jeffmbair.xcuserdatad/xcschemes/tf_ios_makefile_example.xcscheme -------------------------------------------------------------------------------- /tf_ios_makefile_example.xcodeproj/xcuserdata/jeffmbair.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/tf_ios_makefile_example.xcodeproj/xcuserdata/jeffmbair.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /yolo2tfios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffxtang/yolov2_tf_ios/HEAD/yolo2tfios.png --------------------------------------------------------------------------------