├── .hgignore ├── CameraDetect.xcodeproj └── project.pbxproj ├── CameraExampleAppDelegate.h ├── CameraExampleAppDelegate.m ├── CameraExampleViewController.h ├── CameraExampleViewController.mm ├── Info.plist ├── README.md ├── data ├── grace_hopper.jpg └── yolo_labels.txt ├── en.lproj └── MainStoryboard_iPhone.storyboard ├── ios_image_load.h ├── ios_image_load.mm ├── main.mm ├── squarePNG.png ├── tensorflow_utils.h └── tensorflow_utils.mm /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/.hgignore -------------------------------------------------------------------------------- /CameraDetect.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/CameraDetect.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CameraExampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/CameraExampleAppDelegate.h -------------------------------------------------------------------------------- /CameraExampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/CameraExampleAppDelegate.m -------------------------------------------------------------------------------- /CameraExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/CameraExampleViewController.h -------------------------------------------------------------------------------- /CameraExampleViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/CameraExampleViewController.mm -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/README.md -------------------------------------------------------------------------------- /data/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/data/grace_hopper.jpg -------------------------------------------------------------------------------- /data/yolo_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/data/yolo_labels.txt -------------------------------------------------------------------------------- /en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /ios_image_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/ios_image_load.h -------------------------------------------------------------------------------- /ios_image_load.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/ios_image_load.mm -------------------------------------------------------------------------------- /main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/main.mm -------------------------------------------------------------------------------- /squarePNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/squarePNG.png -------------------------------------------------------------------------------- /tensorflow_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/tensorflow_utils.h -------------------------------------------------------------------------------- /tensorflow_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjmade/ios_camera_object_detection/HEAD/tensorflow_utils.mm --------------------------------------------------------------------------------