├── CoreML in ARKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── hanleyweng.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CoreML in ARKit ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-1024.png │ │ ├── Icon-120.png │ │ ├── Icon-152.png │ │ ├── Icon-167.png │ │ ├── Icon-180.png │ │ └── Icon-76.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── MobileNet.mlmodel ├── ViewController.swift └── art.scnassets │ ├── ship.scn │ └── texture.png ├── LICENSE ├── README.md └── post-media ├── AddingMLModel.gif ├── giphy.gif └── snapshot.jpg /CoreML in ARKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreML in ARKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreML in ARKit.xcodeproj/xcuserdata/hanleyweng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit.xcodeproj/xcuserdata/hanleyweng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CoreML in ARKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/AppDelegate.swift -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-152.png -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /CoreML in ARKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CoreML in ARKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CoreML in ARKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/Info.plist -------------------------------------------------------------------------------- /CoreML in ARKit/MobileNet.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/MobileNet.mlmodel -------------------------------------------------------------------------------- /CoreML in ARKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/ViewController.swift -------------------------------------------------------------------------------- /CoreML in ARKit/art.scnassets/ship.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/art.scnassets/ship.scn -------------------------------------------------------------------------------- /CoreML in ARKit/art.scnassets/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/CoreML in ARKit/art.scnassets/texture.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/README.md -------------------------------------------------------------------------------- /post-media/AddingMLModel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/post-media/AddingMLModel.gif -------------------------------------------------------------------------------- /post-media/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/post-media/giphy.gif -------------------------------------------------------------------------------- /post-media/snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanleyweng/CoreML-in-ARKit/HEAD/post-media/snapshot.jpg --------------------------------------------------------------------------------