├── .github └── FUNDING.yml ├── .gitignore ├── README.md └── resources ├── anime_soundanalysis.gif ├── arkit_scenereconstruction.gif ├── corehaptics.png ├── facetrackingcam.gif ├── facetrackingcam.jpg ├── gesture.gif ├── msl1.gif ├── msl2.gif ├── msl3_11pro.gif ├── rectdetection.gif ├── solarsystem2d.gif ├── solarsystem3d.gif ├── speakerclassification.png ├── watch-toonshader.gif └── zundoko-HQ.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [shu223] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/README.md -------------------------------------------------------------------------------- /resources/anime_soundanalysis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/anime_soundanalysis.gif -------------------------------------------------------------------------------- /resources/arkit_scenereconstruction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/arkit_scenereconstruction.gif -------------------------------------------------------------------------------- /resources/corehaptics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/corehaptics.png -------------------------------------------------------------------------------- /resources/facetrackingcam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/facetrackingcam.gif -------------------------------------------------------------------------------- /resources/facetrackingcam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/facetrackingcam.jpg -------------------------------------------------------------------------------- /resources/gesture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/gesture.gif -------------------------------------------------------------------------------- /resources/msl1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/msl1.gif -------------------------------------------------------------------------------- /resources/msl2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/msl2.gif -------------------------------------------------------------------------------- /resources/msl3_11pro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/msl3_11pro.gif -------------------------------------------------------------------------------- /resources/rectdetection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/rectdetection.gif -------------------------------------------------------------------------------- /resources/solarsystem2d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/solarsystem2d.gif -------------------------------------------------------------------------------- /resources/solarsystem3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/solarsystem3d.gif -------------------------------------------------------------------------------- /resources/speakerclassification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/speakerclassification.png -------------------------------------------------------------------------------- /resources/watch-toonshader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/watch-toonshader.gif -------------------------------------------------------------------------------- /resources/zundoko-HQ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-Experiments-Contents/HEAD/resources/zundoko-HQ.gif --------------------------------------------------------------------------------